diff options
author | davidxu <davidxu@FreeBSD.org> | 2006-03-25 04:49:07 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2006-03-25 04:49:07 +0000 |
commit | 6ee36bbb6d4d2e2babd15f47d0b2a922a9d8796c (patch) | |
tree | f00e1926a26d92feddf6b11bf0ab0b9d081d855a /lib/libthr/thread/thr_kern.c | |
parent | bf1d6ea4cd19b0a854f1f9465094e14e04082b08 (diff) | |
download | FreeBSD-src-6ee36bbb6d4d2e2babd15f47d0b2a922a9d8796c.zip FreeBSD-src-6ee36bbb6d4d2e2babd15f47d0b2a922a9d8796c.tar.gz |
Add locking support for rtld.
Diffstat (limited to 'lib/libthr/thread/thr_kern.c')
-rw-r--r-- | lib/libthr/thread/thr_kern.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_kern.c b/lib/libthr/thread/thr_kern.c index 4c451f1..aa7dce6 100644 --- a/lib/libthr/thread/thr_kern.c +++ b/lib/libthr/thread/thr_kern.c @@ -51,13 +51,11 @@ _thr_setthreaded(int threaded) return (0); __isthreaded = threaded; -#if 0 if (threaded != 0) { _thr_rtld_init(); } else { _thr_rtld_fini(); } -#endif return (0); } |