about summary refs log tree commit homepage
path: root/lib/PublicInbox/IPC.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-09-18 10:15:10 +0000
committerEric Wong <e@80x24.org>2023-09-20 19:14:19 +0000
commit6b70d5f03b688ee24df38ea669c0d800a6ad3b49 (patch)
tree51f0bd6e3cc9739bbf9f43284fbe49fa65bc03a5 /lib/PublicInbox/IPC.pm
parentd6e792f9eb38258dd79eed7626b3cab1eb25cd1f (diff)
downloadpublic-inbox-6b70d5f03b688ee24df38ea669c0d800a6ad3b49.tar.gz
`getconf NPROCESSORS_ONLN' will succeed on GNU/Linux systems
anyways; and the non-underscore-prefixed invocation works fine
on all BSD flavors tested.

Thus the `nproc' and `gnproc' attempts will never be reached.
The only downside is we lose the ability to account for CPU
affinity, but that's probably not an issue since CPU affinity
(AFAIK) isn't a commonly-used feature.
Diffstat (limited to 'lib/PublicInbox/IPC.pm')
-rw-r--r--lib/PublicInbox/IPC.pm11
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/PublicInbox/IPC.pm b/lib/PublicInbox/IPC.pm
index 39021f42..fa084795 100644
--- a/lib/PublicInbox/IPC.pm
+++ b/lib/PublicInbox/IPC.pm
@@ -464,16 +464,13 @@ sub detect_nproc () {
         my $n = $NPROCESSORS_ONLN{$^O};
         return POSIX::sysconf($n) if defined $n;
 
-        # getconf(1) is POSIX, but *NPROCESSORS* vars are not
+        # getconf(1) is POSIX, but *NPROCESSORS* vars are not even if
+        # glibc, {Free,Net,Open}BSD all support them.
         for (qw(_NPROCESSORS_ONLN NPROCESSORS_ONLN)) {
                 `getconf $_ 2>/dev/null` =~ /^(\d+)$/ and return $1;
         }
-        for my $nproc (qw(nproc gnproc)) { # GNU coreutils nproc
-                `$nproc 2>/dev/null` =~ /^(\d+)$/ and return $1;
-        }
-
-        # should we bother with `sysctl hw.ncpu`?  Those only give
-        # us total processor count, not online processor count.
+        # note: GNU nproc(1) checks CPU affinity, which is nice but
+        # isn't remotely portable
         undef
 }