Searched refs:P_NOWAIT (Results 1 – 7 of 7) sorted by relevance
/third_party/mksh/ |
D | os2.c | 460 pid = spawnve(P_NOWAIT, exec_name, argv, envp); in execve() 471 pid = spawnve(P_NOWAIT, exec_name, rsp_argv, envp); in execve()
|
/third_party/glib/glib/ |
D | gspawn-win32-helper.c | 345 mode = P_NOWAIT; in WinMain()
|
D | gspawn-win32.c | 447 const int mode = (exit_status == NULL) ? P_NOWAIT : P_WAIT; in do_spawn_directly() 789 rc = _wspawnvpe (P_NOWAIT, whelper, (const wchar_t **) wargv, (const wchar_t **) wenvp); in fork_exec() 791 rc = _wspawnvp (P_NOWAIT, whelper, (const wchar_t **) wargv); in fork_exec()
|
/third_party/python/Lib/test/ |
D | test_os.py | 2945 pid = os.spawnv(os.P_NOWAIT, sys.executable, args) 3084 pid = os.spawnv(os.P_NOWAIT, args[0], args) 3097 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0]) 3098 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0], '') 3103 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], {}) 3104 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], '', {}) 3109 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ()) 3110 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], []) 3111 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ('',)) 3112 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ['']) [all …]
|
/third_party/python/Lib/ |
D | os.py | 837 P_NOWAIT = P_NOWAITO = 1 variable 863 if mode == P_NOWAIT:
|
/third_party/python/Doc/library/ |
D | subprocess.rst | 1328 P_NOWAIT example:: 1330 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") 1342 os.spawnvp(os.P_NOWAIT, path, args) 1348 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
|
D | os.rst | 4069 If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new 4126 .. data:: P_NOWAIT 4153 is similar to :const:`P_NOWAIT`, but the new process is detached from the 4380 functions called with :const:`P_NOWAIT` return suitable process handles.
|