getumask (3)
Leading comments
Copyright (C) 2002 Andries Brouwer <aeb@cwi.nl> %%%LICENSE_START(VERBATIM) Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Since the L...
NAME
getumask - get file creation maskSYNOPSIS
#define _GNU_SOURCE /* See feature_test_macros(7) */#include <sys/types.h>
#include <sys/stat.h>
mode_t getumask(void);
DESCRIPTION
This function returns the current file creation mask. It is equivalent tomode_t getumask(void) { mode_t mask = umask( 0 ); umask(mask); return mask; }except that it is documented to be thread-safe (that is, shares a lock with the umask(2) library call).