diff options
author | Neal H. Walfield <neal@gnu.org> | 2005-02-08 14:42:03 +0000 |
---|---|---|
committer | Neal H. Walfield <neal@gnu.org> | 2005-02-08 14:42:03 +0000 |
commit | a8c2a0c2a1bb1abc34056b09995cb66e5009fce9 (patch) | |
tree | 3742258f69fbf96e05665f2391040ff4c76a61dd | |
parent | d3b41b2c9ee4ac8a7786a78936bc8d929cc26a80 (diff) |
libpthread/
2005-02-08 Neal H. Walfield <neal@gnu.org>
* sysdeps/mach/pt-spin.c (__pthread_spin_lock): Make a weak alias
to _pthread_spin_lock.
* sysdeps/posix/pt-spin.c (__pthread_spin_lock): Likewise.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | sysdeps/mach/pt-spin.c | 3 | ||||
-rw-r--r-- | sysdeps/posix/pt-spin.c | 3 |
3 files changed, 11 insertions, 3 deletions
@@ -1,9 +1,15 @@ +2005-02-08 Neal H. Walfield <neal@gnu.org> + + * sysdeps/mach/pt-spin.c (__pthread_spin_lock): Make a weak alias + to _pthread_spin_lock. + * sysdeps/posix/pt-spin.c (__pthread_spin_lock): Likewise. + 2005-01-18 Neal H. Walfield <neal@gnu.org> * sysdeps/mach/hurd/pt-sysdep.h (__pthread_stack_dealloc): Add __always_inline__ attribute. * sysdeps/l4/hurd/pt-sysdep.h (_pthread_self): Likewise. - (__attribute__): Likewise. + (__pthread_stack_dealloc): Likewise. 2005-01-12 Pietro Ferrari <pietro@bastardi.net> diff --git a/sysdeps/mach/pt-spin.c b/sysdeps/mach/pt-spin.c index 010faca..d9a2a32 100644 --- a/sysdeps/mach/pt-spin.c +++ b/sysdeps/mach/pt-spin.c @@ -1,5 +1,5 @@ /* Spin locks. Mach version. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -33,3 +33,4 @@ _pthread_spin_lock (__pthread_spinlock_t *lock) } weak_alias (_pthread_spin_lock, pthread_spin_lock); +weak_alias (_pthread_spin_lock, __pthread_spin_lock); diff --git a/sysdeps/posix/pt-spin.c b/sysdeps/posix/pt-spin.c index cdc482c..486030d 100644 --- a/sysdeps/posix/pt-spin.c +++ b/sysdeps/posix/pt-spin.c @@ -1,5 +1,5 @@ /* Spin locks. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -51,3 +51,4 @@ _pthread_spin_lock (__pthread_spinlock_t *lock) } weak_alias (_pthread_spin_lock, pthread_spin_lock); +weak_alias (_pthread_spin_lock, __pthread_spin_lock); |