Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: src/share/man/man9
Module Name: src
Committed By: plunky
Date: Sun Dec 13 21:53:03 UTC 2015
Modified Files:
src/share/man/man9: SET.9
Log Message:
Clarify the meaning of this. These macros do not operate on bit numbers
as is implied.. the macros are defined as
#define SET(t, f) ((t) |= (f))
#define ISSET(t, f) ((t) & (f))
#define CLR(t, f) ((t) &= ~(f))
When the rationale is to provide clarity in the source code, then it
is good to have manual pages that are correct.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/man/man9/SET.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index