Mercurial > minori
diff dep/animia/src/fd/libutil.cc @ 198:bc1ae1810855
dep/animia: switch from using classes to global functions
the old idea was ok, but sort of hackish; this method doesn't use classes
at all, and this way (especially important!) we can do wayland stuff AND x11
at the same time, which wasn't really possible without stupid workarounds in
the other method
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 24 Dec 2023 02:59:42 -0500 |
parents | 54c5d80a737e |
children |
line wrap: on
line diff
--- a/dep/animia/src/fd/libutil.cc Fri Dec 08 11:19:54 2023 -0500 +++ b/dep/animia/src/fd/libutil.cc Sun Dec 24 02:59:42 2023 -0500 @@ -19,7 +19,7 @@ !file.find("/proc")); } -bool LibutilFdTools::EnumerateOpenProcesses(process_proc_t process_proc) { +bool EnumerateOpenProcesses(process_proc_t process_proc) { static const int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0}; size_t length = 0; @@ -47,7 +47,7 @@ return true; } -bool LibutilFdTools::EnumerateOpenFiles(const std::set<pid_t>& pids, open_file_proc_t open_file_proc) { +bool EnumerateOpenFiles(const std::set<pid_t>& pids, open_file_proc_t open_file_proc) { for (const auto& pid : pids) { int cnt; std::unique_ptr<struct kinfo_file[]> files; @@ -68,4 +68,4 @@ return true; } -} \ No newline at end of file +}