最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - psutil.children() - how does it deal with PID reuse? - Stack Overflow

programmeradmin1浏览0评论

Looking at the psutil's implementation of Process.children(), I see the following code:

# if child happens to be older than its parent
# (self) it means child's PID has been reused
intime = self.create_time() <= child.create_time()
if intime:
    ret.append(child)
    stack.append(child_pid)

What's the logic behind this code? Isn't it the case that if the child's PID is reused by some process, then this process should've been created later than the original child, which implies that its create_time would be bigger anyway?

发布评论

评论列表(0)

  1. 暂无评论