summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/thread/thread_malloc_lock.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libpthread/thread/thread_malloc_lock.c')
-rw-r--r--lib/libpthread/thread/thread_malloc_lock.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/libpthread/thread/thread_malloc_lock.c b/lib/libpthread/thread/thread_malloc_lock.c
deleted file mode 100644
index 6c2057b708e..00000000000
--- a/lib/libpthread/thread/thread_malloc_lock.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/* $OpenBSD: thread_malloc_lock.c,v 1.7 2008/06/13 21:18:43 otto Exp $ */
-/* Public Domain <marc@snafu.org> */
-
-#include <pthread.h>
-#include "pthread_private.h"
-
-static spinlock_t malloc_lock = _SPINLOCK_INITIALIZER;
-static spinlock_t atexit_lock = _SPINLOCK_INITIALIZER;
-static spinlock_t arc4_lock = _SPINLOCK_INITIALIZER;
-
-void
-_thread_malloc_lock()
-{
- _SPINLOCK(&malloc_lock);
-}
-
-void
-_thread_malloc_unlock()
-{
- _SPINUNLOCK(&malloc_lock);
-}
-
-void
-_thread_atexit_lock()
-{
- _SPINLOCK(&atexit_lock);
-}
-
-void
-_thread_atexit_unlock()
-{
- _SPINUNLOCK(&atexit_lock);
-}
-
-void
-_thread_arc4_lock()
-{
- _SPINLOCK(&arc4_lock);
-}
-
-void
-_thread_arc4_unlock()
-{
- _SPINUNLOCK(&arc4_lock);
-}