Document: N1853
Date: 02-September-2014
Submitter: Rajan Bhakta
Submission Date: 02-September-2014
Suggested Technical Corrigendum
Replace
7.17.8.1 The atomic_flag_test_and_set functions
#2: Atomically sets the value pointed to by object to true. ...
#3: Atomically, the value of the object immediately before the effects.
7.17.8.2 The atomic_flag_clear functions
#2: ... Atomically sets the value pointed to by object to false. ...
with:
7.17.8.1 The atomic_flag_test_and_set functions
#2: Atomically, the flag pointed to by object is set if not already set. ...
#3: Returns the flag value before this function was called converted to a _Bool.
7.17.8.2 The atomic_flag_clear functions
#2: ... Atomically clears the flag pointed to by object. ...