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
|
if AIO
|
||||||
libircd_la_SOURCES += \
|
libircd_la_SOURCES += \
|
||||||
aio.cc \
|
fs_aio.cc \
|
||||||
###
|
###
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
#include <ircd/asio.h>
|
#include <ircd/asio.h>
|
||||||
|
|
||||||
#ifdef IRCD_USE_AIO
|
#ifdef IRCD_USE_AIO
|
||||||
#include "aio.h"
|
#include "fs_aio.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace filesystem = boost::filesystem;
|
namespace filesystem = boost::filesystem;
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include <sys/syscall.h>
|
#include <sys/syscall.h>
|
||||||
#include <sys/eventfd.h>
|
#include <sys/eventfd.h>
|
||||||
#include <ircd/asio.h>
|
#include <ircd/asio.h>
|
||||||
#include "aio.h"
|
#include "fs_aio.h"
|
||||||
|
|
||||||
namespace ircd::fs::aio
|
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
|
// 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
|
// 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.
|
// full license for this software is available in the LICENSE file.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#define HAVE_AIO_H
|
#define HAVE_FS_AIO_H
|
||||||
#include <linux/aio_abi.h>
|
#include <linux/aio_abi.h>
|
||||||
|
|
||||||
namespace ircd::fs::aio
|
namespace ircd::fs::aio
|
Loading…
Reference in a new issue