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

操作系统开发

开发平台:

C/C++

  1. MKNOD(2)                  Minix Programmer's Manual                   MKNOD(2)
  2. NAME
  3.      mknod, mkfifo - make a special file
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <unistd.h>
  7.      #include <sys/stat.h>
  8.      int mknod(const char *path, mode_t mode, dev_t dev)
  9.      int mkfifo(const char *path, mode_t mode)
  10. DESCRIPTION
  11.      Mknod creates a new file whose name is path. The mode  of  the  new  file
  12.      (including  special  file  bits)  is initialized from mode, as defined in
  13.      <sys/stat.h>.  (The protection part  of  the  mode  is  modified  by  the
  14.      process's  mode  mask (see umask(2))).  The first block pointer of the i-
  15.      node is initialized from dev and is used  to  specify  which  device  the
  16.      special file refers to.
  17.      If mode indicates a block or character special file, dev  is  the  device
  18.      number  of  a  character  or block I/O device.  The low eight bits of the
  19.      device number hold the minor device number that selects  a  device  among
  20.      the  devices  governed by the same driver.  The driver is selected by the
  21.      major device number, the next eight bits of the device number.
  22.      If mode does not indicate a block special or  character  special  device,
  23.      dev is ignored.  (For example, when creating a ``fifo'' special file.)
  24.      Mknod may be invoked only by the super-user, unless it is being  used  to
  25.      create a fifo.
  26.      The call mkfifo(path, mode) is equivalent to
  27.           mknod(path, (mode & 0777) | S_IFIFO, 0)
  28. RETURN VALUE
  29.      Upon successful completion a value of 0 is returned.  Otherwise, a  value
  30.      of -1 is returned and errno is set to indicate the error.
  31. ERRORS
  32.      Mknod will fail and the file mode will be unchanged if:
  33.      [ENOTDIR]      A component of the path prefix is not a directory.
  34.      [ENAMETOOLONG] The path name exceeds PATH_MAX characters.
  35.      [ENOENT]       A component of the path prefix does not exist.
  36. 4BSD                              May 23, 1986                               1
  37. MKNOD(2)                  Minix Programmer's Manual                   MKNOD(2)
  38.      [EACCES]       Search permission is denied for a component  of  the  path
  39.                     prefix.
  40.      [ELOOP]        Too many symbolic links were  encountered  in  translating
  41.                     the pathname.  (Minix-vmd)
  42.      [EPERM]        The process's effective user ID is not super-user.
  43.      [EIO]          An I/O error occurred while making the directory entry  or
  44.                     allocating the inode.
  45.      [ENOSPC]       The directory in which the entry for the new node is being
  46.                     placed  cannot  be extended because there is no space left
  47.                     on the file system containing the directory.
  48.      [ENOSPC]       There are no free inodes on the file system on  which  the
  49.                     node is being created.
  50.      [EROFS]        The named file resides on a read-only file system.
  51.      [EEXIST]       The named file exists.
  52.      [EFAULT]       Path points outside the process's allocated address space.
  53. SEE ALSO
  54.      chmod(2), stat(2), umask(2).
  55. 4BSD                              May 23, 1986                               2