You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On OpenBSD and NetBSD, zombie processes have a creation time of 0.0. The example below shows how a process starts normally (so it has a ctime), then it turns into a zombie. This breaks is_running() and also has repercussions on __eq__ and __hash__, which is used to allow creating a set() of uniue Process() objects.
giampaolo
changed the title
[OpenBSD] zombie process has no ctime (breaks is_running(), __eq__ and __hash__)
[OpenBSD, NetBSD] zombie process has no ctime (breaks is_running())
Aug 2, 2023
Summary
Description
On OpenBSD and NetBSD, zombie processes have a creation time of
0.0
. The example below shows how a process starts normally (so it has a ctime), then it turns into a zombie. This breaksis_running()
and also has repercussions on__eq__
and__hash__
, which is used to allow creating a set() of uniueProcess()
objects.The text was updated successfully, but these errors were encountered: