diff options
author | Daniel Eischen <deischen@FreeBSD.org> | 2003-11-04 19:58:12 +0000 |
---|---|---|
committer | Daniel Eischen <deischen@FreeBSD.org> | 2003-11-04 19:58:12 +0000 |
commit | 264978955eff13e77c96dc8cc1be9c00ebc121a4 (patch) | |
tree | c19b1ad072ad3842e9ef68e097c2ef8ec21b662a /lib | |
parent | dc17710e7c2ddc17661572451907938bde9c3cfc (diff) |
Notes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libkse/thread/thr_rtld.c | 5 | ||||
-rw-r--r-- | lib/libpthread/thread/thr_rtld.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/lib/libkse/thread/thr_rtld.c b/lib/libkse/thread/thr_rtld.c index 110fc18ba900a..b267fe8080cd7 100644 --- a/lib/libkse/thread/thr_rtld.c +++ b/lib/libkse/thread/thr_rtld.c @@ -265,9 +265,10 @@ _thr_rtld_clr_flag(int mask) } void -_thr_rtld_init() +_thr_rtld_init(void) { struct RtldLockInfo li; + li.lock_create = _thr_rtld_lock_create; li.lock_destroy = _thr_rtld_lock_destroy; li.rlock_acquire = _thr_rtld_rlock_acquire; @@ -280,7 +281,7 @@ _thr_rtld_init() } void -_thr_rtld_fini() +_thr_rtld_fini(void) { _rtld_thread_init(NULL); } diff --git a/lib/libpthread/thread/thr_rtld.c b/lib/libpthread/thread/thr_rtld.c index 110fc18ba900a..b267fe8080cd7 100644 --- a/lib/libpthread/thread/thr_rtld.c +++ b/lib/libpthread/thread/thr_rtld.c @@ -265,9 +265,10 @@ _thr_rtld_clr_flag(int mask) } void -_thr_rtld_init() +_thr_rtld_init(void) { struct RtldLockInfo li; + li.lock_create = _thr_rtld_lock_create; li.lock_destroy = _thr_rtld_lock_destroy; li.rlock_acquire = _thr_rtld_rlock_acquire; @@ -280,7 +281,7 @@ _thr_rtld_init() } void -_thr_rtld_fini() +_thr_rtld_fini(void) { _rtld_thread_init(NULL); } |