diff options
author | des <des@FreeBSD.org> | 2008-02-06 20:20:29 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2008-02-06 20:20:29 +0000 |
commit | 85a226c62d6217f14a5d39b2ea7016205f32c34e (patch) | |
tree | 59c12e372e7ae0431a444703dc0c5af652a34fc7 /lib | |
parent | 2b6b4fdebb863bc8a5f2774ed2ec838dca294587 (diff) | |
download | FreeBSD-src-85a226c62d6217f14a5d39b2ea7016205f32c34e.zip FreeBSD-src-85a226c62d6217f14a5d39b2ea7016205f32c34e.tar.gz |
Remove incorrectly added FBSDprivate_1.1 namespace, and move symbols which
are new in FreeBSD 8 to the appropriate namespace.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libthr/pthread.map | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/lib/libthr/pthread.map b/lib/libthr/pthread.map index 6092ca6..5b243d0 100644 --- a/lib/libthr/pthread.map +++ b/lib/libthr/pthread.map @@ -84,13 +84,9 @@ global: pthread_multi_np; pthread_mutex_destroy; pthread_mutex_getprioceiling; - pthread_mutex_getspinloops_np; - pthread_mutex_getyieldloops_np; pthread_mutex_init; pthread_mutex_lock; pthread_mutex_setprioceiling; - pthread_mutex_setspinloops_np; - pthread_mutex_setyieldloops_np; pthread_mutex_timedlock; pthread_mutex_trylock; pthread_mutex_unlock; @@ -398,15 +394,11 @@ local: FBSD_1.1 { global: + pthread_mutex_getspinloops_np; + pthread_mutex_getyieldloops_np; pthread_mutex_isowned_np; + pthread_mutex_setspinloops_np; + pthread_mutex_setyieldloops_np; local: *; } FBSD_1.0; - -FBSDprivate_1.1 { -global: - _pthread_mutex_isowned_np; -local: - *; -} FBSDprivate_1.0; - |