File tree Expand file tree Collapse file tree 2 files changed +22
-6
lines changed Expand file tree Collapse file tree 2 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -776,16 +776,20 @@ process and user.
776
776
Flags to the :func: `unshare ` function, if the implementation supports them.
777
777
See the Linux manual for the exact effect and availability.
778
778
779
- .. data :: CLONE_FS
780
- CLONE_FILES
781
- CLONE_NEWNS
779
+ .. data :: CLONE_FILES
782
780
CLONE_NEWCGROUP
783
- CLONE_NEWUTS
784
781
CLONE_NEWIPC
785
- CLONE_NEWUSER
786
- CLONE_NEWPID
787
782
CLONE_NEWNET
783
+ CLONE_NEWNS
784
+ CLONE_NEWPID
788
785
CLONE_NEWTIME
786
+ CLONE_NEWUSER
787
+ CLONE_NEWUTS
788
+ CLONE_SIGHAND
789
+ CLONE_SYSVSEM
790
+ CLONE_THREAD
791
+ CLONE_VM
792
+ CLONE_FS
789
793
790
794
.. _os-newstreams :
791
795
Original file line number Diff line number Diff line change @@ -15468,6 +15468,18 @@ all_ins(PyObject *m)
15468
15468
#ifdef CLONE_NEWTIME
15469
15469
if (PyModule_AddIntMacro (m , CLONE_NEWTIME )) return -1 ;
15470
15470
#endif
15471
+ #ifdef CLONE_SYSVSEM
15472
+ if (PyModule_AddIntMacro (m , CLONE_SYSVSEM )) return -1 ;
15473
+ #endif
15474
+ #ifdef CLONE_THREAD
15475
+ if (PyModule_AddIntMacro (m , CLONE_THREAD )) return -1 ;
15476
+ #endif
15477
+ #ifdef CLONE_SIGHAND
15478
+ if (PyModule_AddIntMacro (m , CLONE_SIGHAND )) return -1 ;
15479
+ #endif
15480
+ #ifdef CLONE_VM
15481
+ if (PyModule_AddIntMacro (m , CLONE_VM )) return -1 ;
15482
+ #endif
15471
15483
#endif
15472
15484
15473
15485
#endif
You can’t perform that action at this time.
0 commit comments