From 5798978f77ef8c3efb3c99fa7fb9538c5c597024 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 27 Feb 2025 11:54:49 -0500 Subject: bfstd: New nproc() function --- src/bfstd.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/bfstd.h') diff --git a/src/bfstd.h b/src/bfstd.h index 84f92ec..28f473e 100644 --- a/src/bfstd.h +++ b/src/bfstd.h @@ -463,6 +463,11 @@ long xsysconf(int name); #define sysoption(name) \ (_POSIX_##name == 0 ? xsysconf(_SC_##name) : _POSIX_##name) +/** + * Get the number of CPU threads available to the current process. + */ +long nproc(void); + #include /** -- cgit v1.2.3