[BACK]Return to atomic.h CVS log [TXT][DIR] Up to [local] / sys / arch / hppa64 / include

File: [local] / sys / arch / hppa64 / include / atomic.h (download)

Revision 1.1, Tue Mar 4 16:05:55 2008 UTC (16 years, 2 months ago) by nbrk
Branch point for: MAIN

Initial revision

/*	$OpenBSD: atomic.h,v 1.2 2007/02/19 17:18:42 deraadt Exp $	*/

/* Public Domain */

#ifndef __HPPA64_ATOMIC_H__
#define __HPPA64_ATOMIC_H__

#if defined(_KERNEL)

static __inline void
atomic_setbits_int(__volatile unsigned int *uip, unsigned int v)
{
	*uip |= v;
}

static __inline void
atomic_clearbits_int(__volatile unsigned int *uip, unsigned int v)
{
	*uip &= ~v;
}

#endif /* defined(_KERNEL) */
#endif /* __HPPA64_ATOMIC_H__ */