Mercurial > minori
view dep/animone/src/fd.cc @ 264:9a04802848c0
*: improve multiple things
e.g. making some strings.cc functions modify strings in-place,
improving m4_ax_have_qt.m4 code, making anime_db.cc rely on
std::optional rather than std::shared_ptr (which was stupid
anyway)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 11 Apr 2024 10:15:57 -0400 |
parents | 862d0d8619f6 |
children | 1a6a5d3a94cd |
line wrap: on
line source
#include "animone/fd.h" #ifdef WIN32 # include "animone/fd/win32.h" #endif #ifdef LINUX # include "animone/fd/proc.h" #endif #ifdef MACOSX # include "animone/fd/xnu.h" # include "animone/util/osx.h" #endif #ifdef LIBKVM # include "animone/fd/kvm.h" #endif namespace animone::internal { bool EnumerateOpenFiles(const std::set<pid_t>& pids, open_file_proc_t open_file_proc) { bool success = false; #ifdef WIN32 success ^= win32::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef LINUX success ^= proc::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef MACOSX success ^= xnu::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef LIBKVM success ^= kvm::EnumerateOpenFiles(pids, open_file_proc); #endif return success; } bool EnumerateOpenProcesses(process_proc_t process_proc) { bool success = false; #ifdef WIN32 success ^= win32::EnumerateOpenProcesses(process_proc); #endif #ifdef LINUX success ^= proc::EnumerateOpenProcesses(process_proc); #endif #ifdef MACOSX success ^= xnu::EnumerateOpenProcesses(process_proc); #endif #ifdef LIBKVM success ^= kvm::EnumerateOpenProcesses(process_proc); #endif return success; } bool GetProcessName(pid_t pid, std::string& name) { bool success = false; #ifdef WIN32 success ^= win32::GetProcessName(pid, name); #endif #ifdef LINUX success ^= proc::GetProcessName(pid, name); #endif #ifdef MACOSX success ^= osx::util::GetProcessName(pid, name); #endif #ifdef LIBKVM success ^= kvm::GetProcessName(pid, name); #endif return success; } } // namespace animone::internal