Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
setsid(2)
Edit
PageHistory
Diff
Info
LikePages
!!NAME setsid - creates a session and sets the process group ID !!SYNOPSIS __#include <unistd.h>__ __pid_t setsid(void);__ !!DESCRIPTION setsid(2) creates a new session if the calling process is not a process group leader. The calling process is the leader of the new session, the process group leader of the new process group, and has no controlling tty. The process group ID and session ID of the calling process are set to the PID of the calling process. The calling process will be the only process in this new process group and in this new session. !!RETURN VALUE The session ID of the calling process. !!ERRORS On error, -1 will be returned. The only error which can happen is [EPERM]. It is returned when the process group ID of any process equals the PID of the calling process. Thus, in particular, setsid(2) fails if the calling process is already a process group leader. !!NOTES A process group leader is a process with process group ID equal to its PID. In order to be sure that setsid(2) will succeed, fork and exit, and have the child do setsid(2). !!CONFORMING TO [POSIX], SVr4. !!SEE ALSO setpgid(2), setpgrp(2), setsid(8)
10 pages link to
setsid(2)
:
Man2s
daemon(3)
setpgid(2)
setpgrp(2)
setsid(8)
syscalls(2)
getpgid(2)
getpgrp(2)
getsid(2)
JobControl
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.