/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: UnixIO.cpp Date: 2022-4-12 Author: Reece ***/ #include #include "UnixIO.hpp" namespace Aurora::IO::UNIX { void InitUnixIO() { } } #if defined(AURORA_IS_LINUX_DERIVED) #include "IOSubmit.Linux.hpp" #endif namespace Aurora::IO { AUKN_SYM void SendBatched() { #if defined(AURORA_IS_LINUX_DERIVED) UNIX::SendIOBuffers(); #endif } }