.\" $OpenBSD: atomic.9,v 1.4 2007/05/31 19:20:00 jmc Exp $ .\" .\" Copyright (c) 2007 Artur Grabowski .\" All rights reserved. .\" .\" Permission to use, copy, modify, and distribute this software for any .\" purpose with or without fee is hereby granted, provided that the above .\" copyright notice and this permission notice appear in all copies. .\" .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .Dd $Mdocdate: May 31 2007 $ .Dt ATOMIC 9 .Os .Sh NAME .Nm atomic , .Nm atomic_setbits_int , .Nm atomic_clearbits_int .Nd interface to perform atomic operations on data .Sh SYNOPSIS .Fd #include .Ft void .Fn atomic_setbits_int "unsigned int *p" "unsigned int b" .Ft void .Fn atomic_clearbits_int "unsigned int *p" "unsigned int b" .Sh DESCRIPTION The .Nm set of functions provide an interface for changing data atomically with respect to interrupts and multiple processors in the system. .Pp The .Fn atomic_setbits_int function sets the bits in .Fa b in the integer pointed to by .Fa p . It is equivalent to .Bd -literal -offset indent *p |= b; .Ed .Pp The .Fn atomic_clearbits_int function clears the bits in .Fa b in the integer pointed to by .Fa p . It is equivalent to .Bd -literal -offset indent *p &= ~b; .Ed .Sh HISTORY The .Nm functions first appeared in .Ox 4.1 .