this post was submitted on 02 Mar 2024
398 points (96.1% liked)
Programmer Humor
32561 readers
390 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Could be an instance of BSD where (so I hear) PIDs are assigned randomly from the unused numbers, or else the system has massive process churn going on elsewhere and the old timer is from a previous cycle of consecutive PIDs.
Some systems still have
/proc/sys/kernel/pid_max
set to something around 32768, so wrapping back to 0 can happen fairly often.Given all the PIDs in the comic seem pretty low, it might even be as low as 1024 wherever this is.
(Yes, I know I'm taking this way too seriously.)