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

操作系统开发

开发平台:

WINDOWS

  1. ." Copyright (c) 1980 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)fork.2 6.4 (Berkeley) 5/22/86
  6. ."
  7. .TH FORK 2 "May 22, 1986"
  8. .UC
  9. .SH NAME
  10. fork - create a new process
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <unistd.h>
  16. pid_t fork(void)
  17. .ft R
  18. .fi
  19. .SH DESCRIPTION
  20. .de SP
  21. .if t .sp 0.4
  22. .if n .sp
  23. ..
  24. .B Fork
  25. causes creation of a new process.
  26. The new process (child process) is an exact copy of the
  27. calling process except for the following:
  28. .RS
  29. .SP
  30. The child process has a unique process ID.
  31. .SP
  32. The child process has a different parent process ID (i.e.,
  33. the process ID of the parent process).
  34. .SP
  35. The child process has its own copy of the parent's descriptors.
  36. These descriptors reference the same underlying objects, so that,
  37. for instance, file pointers in file objects are shared between
  38. the child and the parent, so that an
  39. .BR lseek (2)
  40. on a descriptor in the child process can affect a subsequent
  41. .B read
  42. or
  43. .B write
  44. by the parent.
  45. This descriptor copying is also used by the shell to
  46. establish standard input and output for newly created processes
  47. as well as to set up pipes.
  48. .SP
  49. The child starts with no pending signals and an inactive alarm timer.
  50. .RE
  51. .SH "RETURN VALUE
  52. Upon successful completion, fBforkfP returns a value
  53. of 0 to the child process and returns the process ID of the child
  54. process to the parent process.  Otherwise, a value of -1 is returned
  55. to the parent process, no child process is created, and the global
  56. variable fBerrnofP is set to indicate the error.
  57. .SH ERRORS
  58. .B Fork
  59. will fail and no child process will be created if one or more of the
  60. following are true:
  61. .TP 15
  62. [EAGAIN]
  63. The system-imposed limit on the total
  64. number of processes under execution would be exceeded.
  65. This limit is configuration-dependent.
  66. (The kernel variable NR_PROCS in <minix/config.h> (Minix), or
  67. <minix/const.h> (Minix-vmd).)
  68. .TP 15
  69. [ENOMEM]
  70. There is insufficient (virtual) memory for the new process.
  71. .SH "SEE ALSO"
  72. .BR execve (2),
  73. .BR wait (2).