Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PR_AtomicSet

Atomically sets a 32-bit value and return its previous contents.

Syntax

#include <pratom.h> 

PRInt32 PR_AtomicSet(
  PRInt32 *val,
  PRInt32 newval);

Parameters

The function has the following parameter:

val
A pointer to the value to be set.
newval
The new value to assign to the val parameter.

Returns

The function returns the prior value of the referenced variable.

Description

PR_AtomicSet first reads the value of var, then updates it with the supplied value. The returned value is the value that was readbefore memory was updated. The memory modification is unconditional--that is, it isn't a test and set operation.

Document Tags and Contributors

 Contributors to this page: teoli, Rappo
 Last updated by: teoli,