This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



SETMODE(3)                              BSD Library Functions Manual                              SETMODE(3)

NAME
     getmode, setmode -- modify mode bits

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <unistd.h>

     mode_t
     getmode(const void *set, mode_t mode);

     void *
     setmode(const char *mode_str);

DESCRIPTION
     The getmode() function returns a copy of the file permission bits mode as altered by the values pointed
     to by set.  While only the mode bits are altered, other parts of the file mode may be examined.

     The setmode() function takes an absolute (octal) or symbolic value, as described in chmod(1), as an
     argument and returns a pointer to mode values to be supplied to getmode().  Because some of the sym-bolic symbolic
     bolic values are relative to the file creation mask, setmode() may call umask(2).  If this occurs, the
     file creation mask will be restored before setmode() returns.  If the calling program changes the value
     of its file creation mask after calling setmode(), setmode() must be called again if getmode() is to
     modify future file modes correctly.

     If the mode passed to setmode() is invalid or if memory cannot be allocated for the return value,
     setmode() returns NULL.

     The value returned from setmode() is obtained from malloc() and should be returned to the system with
     free() when the program is done with it, generally after a call to getmode().

ERRORS
     The setmode() function may fail and set errno for any of the errors specified for the library routine
     malloc(3).

SEE ALSO
     chmod(1), stat(2), umask(2), malloc(3)

HISTORY
     The getmode() and setmode() functions first appeared in 4.4BSD.

BSD                                            April 28, 1995                                            BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...