예제 #1
0
파일: atomic.c 프로젝트: looncraz/haiku
int32
atomic_and(int32 *value, int32 andValue)
{
	return _kern_atomic_and(value, andValue);
}
예제 #2
0
파일: atomic.c 프로젝트: HTshandou/newos
int atomic_and(int *val, int incr)
{
	return _kern_atomic_and(val, incr);
}