Mercurial > minori
view dep/animia/src/fd.cc @ 181:d26cd2c00270
dep/animia/fd/proc: use constexpr std::string_view for proc location
this is probably a little slower, but it works Well Enough for what we need it for
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 04 Dec 2023 12:14:30 -0500 |
parents | 54c5d80a737e |
children | bc1ae1810855 8f6f8dd2eb23 |
line wrap: on
line source
#include "animia/fd.h" #ifdef WIN32 # include "animia/fd/win32.h" #elif defined(LINUX) || defined(FREEBSD) # include "animia/fd/proc.h" #elif defined(MACOSX) # include "animia/fd/xnu.h" #elif defined(LIBUTIL) # include "animia/fd/libutil.h" #endif namespace animia::internal { #ifdef WIN32 win32::Win32FdTools os_fd; #elif defined(LINUX) || defined(FREEBSD) proc::ProcFdTools os_fd; #elif defined(MACOSX) xnu::XnuFdTools os_fd; #elif defined(LIBUTIL) libutil::LibutilFdTools os_fd; #else BaseFdTools os_fd; #endif BaseFdTools& fd = os_fd; } // namespace animia::internal