summaryrefslogtreecommitdiff
path: root/sysdeps/posix
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2005-02-08 16:17:13 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-04-06 22:41:29 +0200
commit208f8d657fd3c8f6e2f5dfff0b0af68c6f099c49 (patch)
treeccaaa6e30840684bc49eccbc5698c3b30bfd31d0 /sysdeps/posix
parentd7fecf68ed19432ad1d9f18f83af7d211b5e33d4 (diff)
libpthread/
2005-02-08 Neal H. Walfield <neal@gnu.org> * sysdeps/posix/pt-spin.c (__pthread_spin_lock): Make a weak alias to _pthread_spin_lock. * sysdeps/l4/hurd/pt-sysdep.h (_pthread_self): Add __always_inline__ attribute. (__pthread_stack_dealloc): Likewise.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r--sysdeps/posix/pt-spin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/posix/pt-spin.c b/sysdeps/posix/pt-spin.c
index cdc482c..26793b0 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, 2005 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);