MKFIFO.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. MKFIFO(1)                 Minix Programmer's Manual                  MKFIFO(1)
  2. NAME
  3.      mkfifo - make a named pipe
  4. SYNOPSIS
  5.      mkfifo [-m mode] fifo ...
  6. OPTIONS
  7.      -m   Create fifo with specified mode
  8. EXAMPLES
  9.      mkfifo pipe         # Create pipe in the current directory
  10.      mkfifo -m a+w systatus
  11.                          # Create the systatus writable by all
  12. DESCRIPTION
  13.      The specified fifo special files are created.  If the -m  flag  is  used,
  14.      this  will  be  equivalent  to a chmod on the fifo special file after its
  15.      creation.
  16. SEE ALSO
  17.      chmod(1), mknod(2), mknod(8).
  18.                                                                              1