1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .TH SETLOGMASK 3 2021-03-22 "" "Linux Programmer's Manual"
27 setlogmask \- set log priority mask
30 .B #include <syslog.h>
32 .BI "int setlogmask(int " mask );
35 A process has a log priority mask that determines which calls to
38 All other calls will be ignored.
39 Logging is enabled for the priorities that have the corresponding
42 The initial mask is such that logging is enabled for all priorities.
46 function sets this logmask for the calling process,
47 and returns the previous mask.
48 If the mask argument is 0, the current logmask is not modified.
50 The eight priorities are
60 The bit corresponding to a priority
64 Some systems also provide a macro
67 of all priorities in the above list up to and including
70 This function returns the previous log priority mask.
74 .\" The glibc logmask handling was broken in versions before glibc 2.1.1.
76 For an explanation of the terms used in this section, see
84 Interface Attribute Value
87 T} Thread safety MT-Unsafe race:LogMask
93 POSIX.1-2001, POSIX.1-2008.
94 .\" Note that the description in POSIX.1-2001 is flawed.
97 will be included in the next release of the POSIX specification (Issue 8).
98 .\" FIXME . https://www.austingroupbugs.net/view.php?id=1033