Alexander Kabaev 4e5001c263 Bow to incomplete GCC 4. constant propagation optimizations and
initialize some of the local variables GCC claims are being used
uninitialized.
2007-05-30 03:03:06 +00:00

43 lines
976 B
C

#ifndef __XFS_SUPPORT_SPIN_H__
#define __XFS_SUPPORT_SPIN_H__
#include <sys/param.h>
#include <sys/types.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#define SPLDECL(s) register_t s
/*
* Map the spinlocks from IRIX to FreeBSD
*/
#define spinlock_init(lock, name) mtx_init(lock, name, NULL, MTX_DEF)
#define spinlock_destroy(lock) mtx_destroy(lock)
/*
* Map lock_t from IRIX to FreeBSD mutexes
*/
typedef struct mtx lock_t;
#define nested_spinunlock(lock) mtx_unlock(lock)
#define nested_spinlock(lock) mtx_lock(lock)
#define nested_spintrylock(lock) mtx_trylock(lock)
#define spin_lock(lock) mtx_lock(lock)
#define spin_unlock(lock) mtx_unlock(lock)
#if LOCK_DEBUG > 0
#define mutex_spinlock(lock) (spin_lock(lock),0)
#else
static __inline register_t
mutex_spinlock(lock_t *lock) { mtx_lock(lock); return 0; }
#endif
#define mutex_spinunlock(lock, s) \
do { \
spin_unlock(lock); \
if (s != 0) {} \
} while (0)
#endif /* __XFS_SUPPORT_SPIN_H__ */