patch-2.1.16 linux/include/asm-sparc64/semaphore.h

Next file: linux/include/asm-sparc64/system.h
Previous file: linux/include/asm-sparc64/ptrace.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.15/linux/include/asm-sparc64/semaphore.h linux/include/asm-sparc64/semaphore.h
@@ -0,0 +1,35 @@
+#ifndef _SPARC64_SEMAPHORE_H
+#define _SPARC64_SEMAPHORE_H
+
+/* These are actually reasonable on the V9. */
+
+#include <asm/atomic.h>
+
+struct semaphore {
+	atomic_t count;
+	atomic_t waiting;
+	struct wait_queue * wait;
+};
+
+#define MUTEX ((struct semaphore) { 1, 0, NULL })
+#define MUTEX_LOCKED ((struct semaphore) { 0, 0, NULL })
+
+extern void __down(struct semaphore * sem);
+extern void __up(struct semaphore * sem);
+
+extern __inline__ void down(struct semaphore * sem)
+{
+	for (;;) {
+		if (atomic_dec_return(&sem->count) >= 0)
+			break;
+		__down(sem);
+	}
+}
+
+extern __inline__ void up(struct semaphore * sem)
+{
+	if (atomic_inc_return(&sem->count) <= 0)
+		__up(sem);
+}	
+
+#endif /* !(_SPARC64_SEMAPHORE_H) */

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov