0
0
Fork 0
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:
Jason Volk 2019-01-23 13:20:38 -08:00
parent 2547dc8367
commit 14b57f2eac
4 changed files with 6 additions and 6 deletions

View file

@ -144,7 +144,7 @@ libircd_la_SOURCES = \
if AIO
libircd_la_SOURCES += \
aio.cc \
fs_aio.cc \
###
endif

View file

@ -15,7 +15,7 @@
#include <ircd/asio.h>
#ifdef IRCD_USE_AIO
#include "aio.h"
#include "fs_aio.h"
#endif
namespace filesystem = boost::filesystem;

View file

@ -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
//
//

View file

@ -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