umask - set and get the file mode creation mask
#include <sys/stat.h>
mode_t umask(mode_t cmask);
The umask() function shall set the file mode creation mask of the process to cmask and return the previous value of the mask. Only the file permission bits of cmask (see <sys/stat.h>) are used; the meaning of the other bits is implementation-defined.
The file mode creation mask of the process is used to turn off permission bits in the mode argument supplied during calls to the following functions:
Bit positions that are set in cmask are cleared in the mode of the created file.
The file permission bits in the value returned by umask() shall be the previous value of the file mode creation mask. The state of any other bits in that value is unspecified, except that a subsequent call to umask() with the returned value as cmask shall leave the state of the mask the same as its state before the first call, including any unspecified use of those bits.
No errors are defined.
None.
None.
Unsigned argument and return types for umask() were proposed. The return type and the argument were both changed to mode_t.
Historical implementations have made use of additional bits in cmask for their implementation-defined purposes. The addition of the text that the meaning of other bits of the field is implementation-defined permits these implementations to conform to this volume of POSIX.1-2008.
None.
First released in Issue 1. Derived from Issue 1 of the SVID.
In the SYNOPSIS, the optional include of the <sys/types.h> header is removed.
The following new requirements on POSIX implementations derive from alignment with the Single UNIX Specification:
The requirement to include <sys/types.h> has been removed. Although <sys/types.h> was required for conforming implementations of previous POSIX specifications, it was not required for UNIX applications.
IEEE Std 1003.1-2001/Cor 2-2004, item XSH/TC2/D6/143 is applied, adding the mknod(), mq_open(), and sem_open() functions to the DESCRIPTION and SEE ALSO sections.
return to top of page