Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-cris / semaphore-helper.h
blob27bfeca1b981a5b8fa343a76796aa38ef8f8c90e
1 /* $Id: semaphore-helper.h,v 1.3 2001/03/26 15:00:33 orjanf Exp $
3 * SMP- and interrupt-safe semaphores helper functions. Generic versions, no
4 * optimizations whatsoever...
6 */
8 #ifndef _ASM_SEMAPHORE_HELPER_H
9 #define _ASM_SEMAPHORE_HELPER_H
11 #include <asm/atomic.h>
12 #include <linux/errno.h>
14 #define read(a) ((a)->counter)
15 #define inc(a) (((a)->counter)++)
16 #define dec(a) (((a)->counter)--)
18 #define count_inc(a) ((*(a))++)
21 * These two _must_ execute atomically wrt each other.
23 static inline void wake_one_more(struct semaphore * sem)
25 atomic_inc(&sem->waking);
28 static inline int waking_non_zero(struct semaphore *sem)
30 unsigned long flags;
31 int ret = 0;
33 local_irq_save(flags);
34 if (read(&sem->waking) > 0) {
35 dec(&sem->waking);
36 ret = 1;
38 local_irq_restore(flags);
39 return ret;
42 static inline int waking_non_zero_interruptible(struct semaphore *sem,
43 struct task_struct *tsk)
45 int ret = 0;
46 unsigned long flags;
48 local_irq_save(flags);
49 if (read(&sem->waking) > 0) {
50 dec(&sem->waking);
51 ret = 1;
52 } else if (signal_pending(tsk)) {
53 inc(&sem->count);
54 ret = -EINTR;
56 local_irq_restore(flags);
57 return ret;
60 static inline int waking_non_zero_trylock(struct semaphore *sem)
62 int ret = 1;
63 unsigned long flags;
65 local_irq_save(flags);
66 if (read(&sem->waking) <= 0)
67 inc(&sem->count);
68 else {
69 dec(&sem->waking);
70 ret = 0;
72 local_irq_restore(flags);
73 return ret;
76 #endif /* _ASM_SEMAPHORE_HELPER_H */