|
getpgid(2) -- get process group
|
The process group of the current process is returned by getpgrp(). The process group of the pid process is returned by getpgid(). Process groups are used for distribution of signals, and by terminals ... |
getpgrp(2) -- get process group
|
The process group of the current process is returned by getpgrp(). The process group of the pid process is returned by getpgid(). Process groups are used for distribution of signals, and by terminals ... |
getpid(2) -- get parent or calling process identification
|
getpid() returns the process ID of the calling process. Though the ID is guaranteed to be unique, it should NOT be used for constructing temporary file names; see mkstemp(3) instead. getppid() returns... |
getppid(2) -- get parent or calling process identification
|
getpid() returns the process ID of the calling process. Though the ID is guaranteed to be unique, it should NOT be used for constructing temporary file names; see mkstemp(3) instead. getppid() returns... |
getpriority(2) -- get/set program scheduling priority
|
The scheduling priority of the process, process group, or user, as indicated by which and who is obtained with the getpriority() call and set with the setpriority() call. which is one of PRIO_PROCESS,... |
getresgid(2) -- get or set real, effective and saved user or group ID
|
The setresuid() function sets the real, effective and saved user IDs of the current process. The analogous setresgid() sets the real, effective and saved group IDs. Privileged processes may set these ... |
getresuid(2) -- get or set real, effective and saved user or group ID
|
The setresuid() function sets the real, effective and saved user IDs of the current process. The analogous setresgid() sets the real, effective and saved group IDs. Privileged processes may set these ... |
getrlimit(2) -- control maximum system resource consumption
|
Limits on the consumption of system resources by the current process and each process it creates may be obtained with the getrlimit() call, and set with the setrlimit() call. The resource parameter is... |
getrusage(2) -- get information about resource utilization
|
getrusage() returns information describing the resources utilized by the current process, or all its terminated child processes. The who parameter is either RUSAGE_SELF or RUSAGE_CHILDREN. The buffer ... |
getsid(2) -- get process session
|
The session ID of the process identified by pid is returned by getsid(). If pid is zero, getsid() returns the session ID of the current process. |
getsockname(2) -- get socket name
|
getsockname() returns the locally bound address information for a specified socket. Common uses of this function are as follows: +o When bind(2) is called with a port number of 0 (indicating the kerne... |
getsockopt(2) -- get and set options on sockets
|
getsockopt() and setsockopt() manipulate the options associated with a socket. Options may exist at multiple protocol levels; they are always present at the uppermost ``socket'' level. When manipula... |
gettimeofday(2) -- get/set date and time
|
Note: timezone is no longer used; this information is kept outside the kernel. The system's notion of the current Greenwich time and the current time zone is obtained with the gettimeofday() call, an... |