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

操作系统开发

开发平台:

WINDOWS

  1. PIPE(2)                   Minix Programmer's Manual                    PIPE(2)
  2. NAME
  3.      pipe - create an interprocess communication channel
  4. SYNOPSIS
  5.      #include <unistd.h>
  6.      int pipe(int fildes[2])
  7. DESCRIPTION
  8.      The pipe system call creates an I/O mechanism called a  pipe.   The  file
  9.      descriptors  returned can be used in read and write operations.  When the
  10.      pipe is written using the descriptor fildes[1] up to  PIPE_MAX  bytes  of
  11.      data  are buffered before the writing process is suspended.  A read using
  12.      the descriptor fildes[0] will pick up the data.
  13.      PIPE_MAX equals 7168 under Minix, but note that most systems use 4096.
  14.      It is assumed that after  the  pipe  has  been  set  up,  two  (or  more)
  15.      cooperating  processes  (created by subsequent fork calls) will pass data
  16.      through the pipe with read and write calls.
  17.      The shell has a syntax to set up a linear array of processes connected by
  18.      pipes.
  19.      Read calls on an empty pipe (no buffered data) with  only  one  end  (all
  20.      write file descriptors closed) returns an end-of-file.
  21.      The signal SIGPIPE is generated if a write on a pipe with only one end is
  22.      attempted.
  23. RETURN VALUE
  24.      The function value zero is returned if the pipe was  created;  -1  if  an
  25.      error occurred.
  26. ERRORS
  27.      The pipe call will fail if:
  28.      [EMFILE]       Too many descriptors are active.
  29.      [ENFILE]       The system file table is full.
  30.      [ENOSPC]       The pipe file system (usually the root file system) has no
  31.                     free inodes.
  32.      [EFAULT]       The fildes buffer is in an invalid area of  the  process's
  33.                     address space.
  34. 4BSD                             August 26, 1985                             1
  35. PIPE(2)                   Minix Programmer's Manual                    PIPE(2)
  36. SEE ALSO
  37.      sh(1), read(2), write(2), fork(2).
  38. NOTES
  39.      Writes may return ENOSPC errors if no pipe data can be buffered,  because
  40.      the pipe file system is full.
  41. BUGS
  42.      Should more than PIPE_MAX bytes be necessary in any pipe among a loop  of
  43.      processes, deadlock will occur.
  44. 4BSD                             August 26, 1985                             2