diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-03-06 18:37:54 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-03-06 18:37:54 +0000 |
commit | 6ee30170b5e77bdc4eca74a92404b236b68fd9a7 (patch) | |
tree | ec41e832df51b71cf88d4109ab77b843ca8177d5 /lib | |
parent | d25ed8e7ffa94234f3536f27a3f978718aeb8b47 (diff) |
Add _thread_atexit_lock and _thread_atexit_unlock to the list of
weak functions; ok millert@.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/uthread/uthread_init.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/uthread_init.c b/lib/libpthread/uthread/uthread_init.c index 69a70e5a22a..c146a71f5e5 100644 --- a/lib/libpthread/uthread/uthread_init.c +++ b/lib/libpthread/uthread/uthread_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_init.c,v 1.33 2005/10/30 03:37:34 brad Exp $ */ +/* $OpenBSD: uthread_init.c,v 1.34 2006/03/06 18:37:53 otto Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au> * All rights reserved. @@ -134,6 +134,8 @@ static void *references[] = { &_thread_malloc_init, &_thread_malloc_lock, &_thread_malloc_unlock, + &_thread_atexit_lock, + &_thread_atexit_unlock, &_thread_tag_lock, &_thread_tag_unlock, &_thread_tag_storage, |