Home
last modified time | relevance | path

Searched refs:pid (Results 1 – 25 of 25) sorted by relevance

/libuv/src/unix/
H A Dprocess.c106 pid_t pid; in uv__wait_children() local
130 pid = waitpid(process->pid, &status, options); in uv__wait_children()
138 if (pid == -1) { in uv__wait_children()
146 assert(pid == process->pid); in uv__wait_children()
768 pid_t* pid, in uv__spawn_and_init_child_posix_spawn() argument
827 *pid = fork(); in uv__spawn_and_init_child_fork()
829 if (*pid == 0) { in uv__spawn_and_init_child_fork()
838 if (*pid == -1) in uv__spawn_and_init_child_fork()
851 pid_t* pid) { in uv__spawn_and_init_child() argument
962 pid_t pid; in uv_spawn()
[all …]
H A Dnetbsd.c142 pid_t pid; in uv_resident_set_memory() local
148 pid = getpid(); in uv_resident_set_memory()
154 kinfo = kvm_getproc2(kd, KERN_PROC_PID, pid, max_size, &nprocs); in uv_resident_set_memory()
H A Dcore.c1534 int uv_os_getpriority(uv_pid_t pid, int* priority) { in uv_os_getpriority() argument
1541 r = getpriority(PRIO_PROCESS, (int) pid); in uv_os_getpriority()
1551 int uv_os_setpriority(uv_pid_t pid, int priority) { in uv_os_setpriority() argument
1555 if (setpriority(PRIO_PROCESS, (int) pid, priority) != 0) in uv_os_setpriority()
1572 pid_t pid = gettid(); in uv_thread_getpriority() local
1585 r = getpriority(PRIO_PROCESS, pid); in uv_thread_getpriority()
1605 pid_t pid = gettid(); in set_nice_for_calling_thread() local
1607 r = setpriority(PRIO_PROCESS, pid, nice); in set_nice_for_calling_thread()
H A Dkqueue.c316 if (process->pid == fd) { in uv__io_poll()
H A Dos390.c158 int pid; in uv_exepath() local
/libuv/test/
H A Dtest-pipe-close-stdout-read-stdin.c57 int pid; in TEST_IMPL() local
67 pid = -1; in TEST_IMPL()
69 pid = fork(); in TEST_IMPL()
72 if (pid == 0) { in TEST_IMPL()
110 waitpid(pid, &status, 0); in TEST_IMPL()
H A Drunner-unix.c94 pid_t pid; in process_start() local
139 pid = -1; in process_start()
141 pid = fork(); in process_start()
144 if (pid < 0) { in process_start()
149 if (pid == 0) { in process_start()
163 p->pid = pid; in process_start()
212 r = waitpid(p->pid, &p->status, 0); in dowait()
337 kill(p->pid, SIGTERM); in process_wait()
428 return kill(p->pid, SIGTERM); in process_terminate()
H A Dtest-platform-output.c32 uv_pid_t pid; in TEST_IMPL() local
224 pid = uv_os_getpid(); in TEST_IMPL()
225 ASSERT_GT(pid, 0); in TEST_IMPL()
226 printf("uv_os_getpid: %d\n", (int) pid); in TEST_IMPL()
H A Dtest-signal.c30 uv_pid_t pid; in TEST_IMPL() local
32 pid = uv_os_getpid(); in TEST_IMPL()
34 ASSERT_EQ(uv_kill(pid, -1), UV_EINVAL); in TEST_IMPL()
37 ASSERT_EQ(uv_kill(pid, NSIG), UV_EINVAL); in TEST_IMPL()
39 ASSERT_EQ(uv_kill(pid, 4096), UV_EINVAL); in TEST_IMPL()
H A Drunner-unix.h30 pid_t pid; member
H A Dtest-spawn.c113 err = uv_kill(process->pid, 0); in kill_cb()
220 err = waitpid(process.pid, &status, 0); in TEST_IMPL()
843 ASSERT_EQ(process.pid, uv_process_get_pid(&process)); in TEST_IMPL()
845 r = uv_kill(process.pid, 0); in TEST_IMPL()
848 r = uv_kill(process.pid, SIGTERM); in TEST_IMPL()
1076 r = uv_kill(process.pid, 0); in TEST_IMPL()
1080 r = uv_kill(process.pid, SIGTERM); in TEST_IMPL()
H A Dtest-fs.c3695 pthread_t pid; member
3728 pthread_kill(ctx->pid, SIGUSR1); in thread_main()
3767 ctx.pid = pthread_self(); in test_fs_partial()
/libuv/src/win/
H A Dprocess.c133 handle->pid = 0; in uv__process_init()
1105 process->pid = info.dwProcessId; in uv_spawn()
1172 DWORD pid, ret; in uv__kill() local
1179 pid = GetProcessId(process_handle); in uv__kill()
1231 pid); in uv__kill()
1265 pid, in uv__kill()
1372 int uv_kill(int pid, int signum) { in uv_kill() argument
1376 if (pid == 0) { in uv_kill()
1381 pid); in uv_kill()
H A Dutil.c1372 static int uv__get_handle(uv_pid_t pid, int access, HANDLE* handle) { in uv__get_handle() argument
1375 if (pid == 0) in uv__get_handle()
1378 *handle = OpenProcess(access, FALSE, pid); in uv__get_handle()
1393 int uv_os_getpriority(uv_pid_t pid, int* priority) { in uv_os_getpriority() argument
1400 r = uv__get_handle(pid, PROCESS_QUERY_LIMITED_INFORMATION, &handle); in uv_os_getpriority()
1432 int uv_os_setpriority(uv_pid_t pid, int priority) { in uv_os_setpriority() argument
1453 r = uv__get_handle(pid, PROCESS_SET_INFORMATION, &handle); in uv_os_setpriority()
H A Dinternal.h99 int pid,
H A Dpipe.c1731 DWORD* pid = &handle->pipe.conn.ipc_remote_pid; in uv__pipe_get_ipc_remote_pid() local
1736 if (*pid == 0) { in uv__pipe_get_ipc_remote_pid()
1737 GetNamedPipeClientProcessId(handle->handle, pid); in uv__pipe_get_ipc_remote_pid()
1738 if (*pid == GetCurrentProcessId()) { in uv__pipe_get_ipc_remote_pid()
1739 GetNamedPipeServerProcessId(handle->handle, pid); in uv__pipe_get_ipc_remote_pid()
1743 return *pid; in uv__pipe_get_ipc_remote_pid()
/libuv/docs/code/detach/
H A Dmain.c27 fprintf(stderr, "Launched sleep with PID %d\n", child_req.pid); in main()
/libuv/docs/code/spawn/
H A Dmain.c32 fprintf(stderr, "Launched process with ID %d\n", child_req.pid); in main()
/libuv/src/
H A Duv-data-getter-setters.c90 return proc->pid; in uv_process_get_pid()
/libuv/docs/code/multi-echo-server/
H A Dmain.c93 fprintf(stderr, "Started worker %d\n", worker->req.pid); in setup_workers()
/libuv/docs/src/
H A Dprocess.rst173 .. c:member:: int uv_process_t.pid
280 .. c:function:: int uv_kill(int pid, int signum)
287 Returns `handle->pid`.
H A Dmisc.rst742 .. c:function:: int uv_os_getpriority(uv_pid_t pid, int* priority)
744 Retrieves the scheduling priority of the process specified by `pid`. The
754 .. c:function:: int uv_os_setpriority(uv_pid_t pid, int priority)
756 Sets the scheduling priority of the process specified by `pid`. The
/libuv/include/
H A Duv.h1125 int pid; member
1133 UV_EXTERN int uv_kill(int pid, int signum);
1291 UV_EXTERN int uv_os_getpriority(uv_pid_t pid, int* priority);
1292 UV_EXTERN int uv_os_setpriority(uv_pid_t pid, int priority);
/libuv/docs/src/guide/
H A Dprocesses.rst50 After the call to ``uv_spawn``, ``uv_process_t.pid`` will contain the process
127 uv_err_t uv_kill(int pid, int signum);
131 the pid. In this case, **remember to call** ``uv_close`` on the watcher _after_
/libuv/
H A DChangeLog326 * win,pipe: improve method of obtaining pid for ipc (number201724)

Completed in 98 milliseconds