[issue47151] vfork() returns EINVAL if PID=1

2022-03-29 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue47151] vfork() returns EINVAL if PID=1

2022-03-29 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue47151] vfork() returns EINVAL if PID=1

2022-03-29 Thread Марк Коренберг
New submission from Марк Коренберг : The bug introduced here: #35823 If os.gepid() == 1, vfork() does not work and returns EINVAL. Please add check for the current pid in condition where CPython chooses between fork() and vfork(). -- components: Library (Lib) messages: 416252 nosy: