SETSID.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. SETSID(2)                 Minix Programmer's Manual                  SETSID(2)
  2. NAME
  3.      setsid, getpgrp - create process group, get process group id
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <unistd.h>
  7.      pid_t setsid(void)
  8.      pid_t getpgrp(void)
  9. DESCRIPTION
  10.      Setsid() creates a new session if the calling process is  not  already  a
  11.      session  leader.  The calling process becomes the session leader of a new
  12.      process group and the process group ID of this new process group will  be
  13.      equal  to the process ID of the new session leader.  The process group ID
  14.      is inherited on a fork().
  15.      Getpgrp() returns the process group ID of the calling process.
  16. SEE ALSO
  17.      kill(2), termios(3), tty(4).
  18. DIAGNOSTICS
  19.      Setsid() returns the new process group ID on success, or  -1  with  errno
  20.      set to EPERM if the process is already a session leader.
  21. AUTHOR
  22.      Kees J. Bot (kjb@cs.vu.nl)
  23.                                                                              1