mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
ircd: Rename aio.h/aio.cc with fs_ prefix.
This commit is contained in:
parent
2547dc8367
commit
14b57f2eac
4 changed files with 6 additions and 6 deletions
|
@ -144,7 +144,7 @@ libircd_la_SOURCES = \
|
|||
|
||||
if AIO
|
||||
libircd_la_SOURCES += \
|
||||
aio.cc \
|
||||
fs_aio.cc \
|
||||
###
|
||||
endif
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <ircd/asio.h>
|
||||
|
||||
#ifdef IRCD_USE_AIO
|
||||
#include "aio.h"
|
||||
#include "fs_aio.h"
|
||||
#endif
|
||||
|
||||
namespace filesystem = boost::filesystem;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <sys/syscall.h>
|
||||
#include <sys/eventfd.h>
|
||||
#include <ircd/asio.h>
|
||||
#include "aio.h"
|
||||
#include "fs_aio.h"
|
||||
|
||||
namespace ircd::fs::aio
|
||||
{
|
||||
|
@ -20,7 +20,7 @@ namespace ircd::fs::aio
|
|||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// fs/aio.h
|
||||
// ircd/fs/aio.h
|
||||
//
|
||||
// The contents of this section override weak symbols in ircd/fs.cc when this
|
||||
// unit is conditionally compiled and linked on AIO-supporting platforms. On
|
||||
|
@ -87,7 +87,7 @@ noexcept
|
|||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// ircd/aio.h
|
||||
// fs_aio.h
|
||||
//
|
||||
|
||||
//
|
|
@ -9,7 +9,7 @@
|
|||
// full license for this software is available in the LICENSE file.
|
||||
|
||||
#pragma once
|
||||
#define HAVE_AIO_H
|
||||
#define HAVE_FS_AIO_H
|
||||
#include <linux/aio_abi.h>
|
||||
|
||||
namespace ircd::fs::aio
|
Loading…
Reference in a new issue