From a04bf6e3c68b13ba327bbea611ce4eb0077d850c Mon Sep 17 00:00:00 2001 From: marc Date: Tue, 5 Nov 2002 22:19:55 +0000 Subject: thread safe libc -- 2nd try. OK miod@, millert@ Thanks to miod@ for m68k and vax fixes --- lib/libpthread/thread/thread_malloc_lock.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'lib/libpthread/thread/thread_malloc_lock.c') diff --git a/lib/libpthread/thread/thread_malloc_lock.c b/lib/libpthread/thread/thread_malloc_lock.c index 68f899983cb..8755b1dad27 100644 --- a/lib/libpthread/thread/thread_malloc_lock.c +++ b/lib/libpthread/thread/thread_malloc_lock.c @@ -1,7 +1,8 @@ +/* $OpenBSD: thread_malloc_lock.c,v 1.4 2002/11/05 22:19:55 marc Exp $ */ +/* Public Domain */ + #include #include "pthread_private.h" -#include "thread_private.h" -#include "spinlock.h" static spinlock_t malloc_lock = _SPINLOCK_INITIALIZER; @@ -16,3 +17,8 @@ _thread_malloc_unlock() { _SPINUNLOCK(&malloc_lock); } + +void +_thread_malloc_init() +{ +} -- cgit v1.2.3-59-g8ed1b