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

操作系统开发

开发平台:

WINDOWS

  1. UMASK(2)                  Minix Programmer's Manual                   UMASK(2)
  2. NAME
  3.      umask - set file creation mode mask
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <sys/stat.h>
  7.      mode_t umask(mode_t mask)
  8. DESCRIPTION
  9.      Umask sets the process's file mode creation mask to mask and returns  the
  10.      previous  value  of  the  mask.   The  low-order  9 bits of mask are used
  11.      whenever a file is created, clearing corresponding bits in the file  mode
  12.      (see  chmod(2)).   This clearing allows each user to restrict the default
  13.      access to his files.
  14.      The value is initially 022 (write access for owner only).   The  mask  is
  15.      inherited by child processes.
  16. RETURN VALUE
  17.      The previous value of the file mode mask is returned by the call.
  18. SEE ALSO
  19.      chmod(2), mknod(2), open(2).
  20. 4BSD                               May 9, 1985                               1