|
getitimer(2) -- get/set value of interval timer
|
The system provides each process with three interval timers, defined in . The getitimer() system call returns the current value for the timer specified in which in the structure at value. ... |
getlogin(2) -- get/set login name
|
The getlogin() routine returns the login name of the user associated with the current session, as previously set by setlogin(). The name is normally associated with a login shell at the time a session... |
|
getpeername(2) -- get name of connected peer
|
The getpeername() system call returns the name of the peer connected to socket s. The namelen argument should be initialized to indicate the amount of space pointed to by name. On return it contains t... |
getpgid(2) -- get process group
|
The process group of the current process is returned by getpgrp(). The process group of the process identified by pid is returned by getpgid(). If pid is zero, getpgid() returns the process group of t... |
getpgrp(2) -- get process group
|
The process group of the current process is returned by getpgrp(). The process group of the process identified by pid is returned by getpgid(). If pid is zero, getpgid() returns the process group of t... |
getpid(2) -- get parent or calling process identification
|
The getpid() system call 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, for security reasons; see... |
getppid(2) -- get parent or calling process identification
|
The getpid() system call 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, for security reasons; see... |
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() system call and set with the setpriority() system call. The which argum... |
getresgid(2) -- get or set real, effective and saved user or group ID
|
The setresuid() system call 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 the... |
getresuid(2) -- get or set real, effective and saved user or group ID
|
The setresuid() system call 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 the... |
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() system call, and set with the setrlimit() system call. The resourc... |
getrusage(2) -- get information about resource utilization
|
The getrusage() system call returns information describing the resources utilized by the current process, or all its terminated child processes. The who argument is either RUSAGE_SELF or RUSAGE_CHILDR... |
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
|
The getsockname() system call returns the current name for the specified socket. The namelen argument should be initialized to indicate the amount of space pointed to by name. On return it contains th... |
getsockopt(2) -- get and set options on sockets
|
The getsockopt() and setsockopt() system calls manipulate the options associated with a socket. Options may exist at multiple protocol levels; they are always present at the uppermost ``socket'' lev... |