source: trunk/minix/man/man2/setsid.2@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 927 bytes
Line 
1.TH SETSID 2
2.SH NAME
3setsid, getpgrp \- create process group, get process group id
4.SH SYNOPSIS
5.ft B
6.nf
7#include <sys/types.h>
8#include <unistd.h>
9
10pid_t setsid(void)
11pid_t getpgrp(void)
12.fi
13.ft P
14.SH DESCRIPTION
15.B Setsid()
16creates a new session if the calling process is not already a session
17leader. The calling process becomes the session leader of a new process
18group and the process group ID of this new process group will be equal to
19the process ID of the new session leader. The process group ID is inherited
20on a
21.BR fork (2).
22.PP
23.B Getpgrp()
24returns the process group ID of the calling process.
25.SH "SEE ALSO"
26.BR kill (2),
27.BR termios (3),
28.BR tty (4).
29.SH DIAGNOSTICS
30.B Setsid()
31returns the new process group ID on success, or \-1 with
32.B errno
33set to
34.B EPERM
35if the process is already a session leader.
36.SH AUTHOR
37Kees J. Bot (kjb@cs.vu.nl)
38
39.\"
40.\" $PchId: setsid.2,v 1.2 1996/04/11 06:06:36 philip Exp $
Note: See TracBrowser for help on using the repository browser.