*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: umask | Section: 2 | Source: Digital UNIX | File: umask.2.gz
umask(2) System Calls Manual umask(2) NAME umask - Sets and gets the value of the file creation mask SYNOPSIS #include <sys/types.h> #include <sys/stat.h> mode_t umask ( mode_t cmask ); STANDARDS Interfaces documented on this reference page conform to industry stan- dards as follows: umask(): POSIX.1, XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about in- dustry standards and associated tags. PARAMETERS Specifies the value of the file mode creation mask. DESCRIPTION The umask() function sets the file mode creation mask of the process to the value of the cmask parameter and returns the previous value of the mask. The cmask parameter is constructed by logically ORing file per- mission bits defined in the sys/mode.h header file. Whenever a file is created (by the open(), mkdir(), or mknod() func- tion), all file permission bits set in the file mode creation mask are cleared in the mode of the created file. This clearing lets users re- strict the default access to their files. The mask is inherited by child processes. RETURN VALUES Upon successful completion, the previous value of the file mode cre- ation mask is returned. RELATED INFORMATION Commands: chmod(1), mkdir(1), Bourne shell sh(1b), POSIX shell sh(1p), umask(1) Functions: chmod(2), mkdir(2), mknod(2), open(2), stat(2) Standards: standards(5) delim off umask(2)

Navigation Options