Searched refs:pid_t (Results 1 - 25 of 105) sorted by relevance

12345

/haiku/src/libs/stdc++/legacy/
H A Dvfork.c6 pid_t
/haiku/src/system/libroot/posix/unistd/
H A Dprocess.c21 pid_t
28 pid_t
36 pid_t
44 pid_t
45 getsid(pid_t process)
47 pid_t session = _kern_process_info(process, SESSION_ID);
53 pid_t
54 getpgid(pid_t process)
56 pid_t group = _kern_process_info(process, GROUP_ID);
63 setpgid(pid_t proces
[all...]
H A Dterminal.c47 tcsetpgrp(int fd, pid_t pgrpid)
53 pid_t
56 pid_t foregroundProcess;
/haiku/src/libs/bsd/
H A Dwait.c15 extern pid_t _waitpid(pid_t pid, int* _status, int options,
19 pid_t _wait3_base(int *status, int options, struct rusage *rusage);
20 pid_t _wait4_base(pid_t pid, int *status, int options, struct rusage *rusage);
21 pid_t _wait3_current(int *status, int options, struct rusage *rusage);
22 pid_t _wait4_current(pid_t pid, int *status, int options,
26 pid_t
33 pid_t
[all...]
H A Ddaemon.c28 pid_t newGroup;
29 pid_t pid;
/haiku/headers/compatibility/bsd/sys/
H A Dwait.h23 pid_t wait3(int *status, int options, struct rusage *rusage);
25 pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage);
/haiku/src/apps/terminal/
H A DActiveProcessInfo.h17 void SetTo(pid_t id, const BString& name,
23 pid_t ID() const { return fID; }
30 pid_t fID;
H A DShellInfo.h17 pid_t ProcessID() const
19 void SetProcessID(pid_t processID)
34 pid_t fProcessID;
H A DActiveProcessInfo.cpp20 ActiveProcessInfo::SetTo(pid_t id, const BString& name,
/haiku/src/system/libroot/posix/sys/
H A Dwait.cpp20 pid_t
26 extern "C" pid_t
27 _waitpid(pid_t pid, int* _status, int options, team_usage_info *usage_info)
31 pid_t child = _kern_wait_for_child(pid, options | WEXITED, &info,
87 pid_t
88 waitpid(pid_t pid, int* _status, int options)
121 pid_t child = _kern_wait_for_child(id, options, info, NULL);
/haiku/src/tests/system/kernel/
H A Dwait_test_2.cpp35 pid_t child = fork();
49 pid_t child = fork();
53 pid_t pid;
H A Dwait_test_3.cpp35 pid_t child = fork();
48 pid_t child = fork();
52 pid_t pid;
H A Dwait_test_4.cpp32 pid_t child = fork();
49 pid_t child = fork();
53 pid_t pid;
/haiku/src/system/libroot/posix/signal/
H A Dkillpg.cpp14 killpg(pid_t processGroupID, int signal)
H A Dkill.c17 kill(pid_t pid, int sig)
H A Dsigqueue.cpp19 sigqueue(pid_t pid, int signal, const union sigval userValue)
/haiku/headers/posix/sys/
H A Dwait.h43 extern pid_t wait(int *_status);
44 extern pid_t waitpid(pid_t pid, int *_status, int options);
H A Dmsg.h25 pid_t msg_lspid; /* PID of last msgsnd */
26 pid_t msg_lrpid; /* PID of last msgrcv */
/haiku/src/tests/system/libroot/posix/
H A Dsetpgid_test.cpp11 pid_t parentPID = getpid();
15 pid_t childPID = fork();
37 pid_t grandChildPID = fork();
H A Dposix_spawn_test.cpp19 pid_t pid;
24 pid_t waitpid_res = waitpid(pid, &status, 0);
/haiku/src/tests/libs/bsd/
H A Dwait4_test.cpp37 pid_t child = fork();
51 pid_t child = fork();
56 pid_t pid;
/haiku/src/libs/posix_error_mapper/
H A Dtime.cpp21 (pid_t pid, clockid_t* _clockID),
/haiku/headers/compatibility/bsd/
H A Dpty.h22 extern pid_t forkpty(int* master, char* name,
/haiku/headers/posix/
H A Dspawn.h38 extern int posix_spawn(pid_t *pid, const char *path,
41 extern int posix_spawnp(pid_t *pid, const char *file,
66 pid_t *_pgroup);
67 extern int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgroup);
/haiku/headers/private/kernel/
H A Dteam.h26 void team_remove_team(Team *team, pid_t& _signalGroup);
52 status_t team_set_foreground_process_group(void *tty, pid_t processGroup);
73 pid_t _user_wait_for_child(thread_id child, uint32 flags, siginfo_t* info,
79 pid_t _user_process_info(pid_t process, int32 which);
80 pid_t _user_setpgid(pid_t process, pid_t group);
81 pid_t _user_setsid(void);

Completed in 328 milliseconds

12345