Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: c336923b668fdcf0312efbec3b44895d713f4d81 authored by Linus Torvalds on 04 September 2006, 02:19:48 UTC
Linux 2.6.18-rc6
Tip revision: c336923
spinlock_types.h
#ifndef _ASM_POWERPC_SPINLOCK_TYPES_H
#define _ASM_POWERPC_SPINLOCK_TYPES_H

#ifndef __LINUX_SPINLOCK_TYPES_H
# error "please don't include this file directly"
#endif

typedef struct {
	volatile unsigned int slock;
} raw_spinlock_t;

#define __RAW_SPIN_LOCK_UNLOCKED	{ 0 }

typedef struct {
	volatile signed int lock;
} raw_rwlock_t;

#define __RAW_RW_LOCK_UNLOCKED		{ 0 }

#endif
back to top