view dep/animia/src/fd.cc @ 168:79a2a24453fa

window: improve performance when getting running files now we don't block the whole app! :) this is especially noticeable on X11, where window walking takes ABSURDLY long
author paper@DavesDouble.local
date Sun, 19 Nov 2023 05:36:41 -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