diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-12-29 15:01:46 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-12-29 15:01:46 +0100 |
commit | 218db6679aea0dcf05fb60566cef6e18f706d9ba (patch) | |
tree | 3099f55335743748ff18bd435e4de25b22c8f54a /pthread/pt-spin-inlines.c | |
parent | 0a69b89843ec466fa20c994a29d13de6a45c3acb (diff) | |
parent | 7d4a84731cd80a1ef711c83535c6340f0e2b143f (diff) |
Merge branch 'master' into 2.262.26
Diffstat (limited to 'pthread/pt-spin-inlines.c')
-rw-r--r-- | pthread/pt-spin-inlines.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pthread/pt-spin-inlines.c b/pthread/pt-spin-inlines.c index cfb21dd..97afb4d 100644 --- a/pthread/pt-spin-inlines.c +++ b/pthread/pt-spin-inlines.c @@ -25,10 +25,9 @@ #include <pthread.h> -/* Weak aliases for the spin lock functions. Note that - pthread_spin_lock is left out deliberately. We already provide an - implementation for it in pt-spin.c. */ +/* Weak aliases for the spin lock functions. */ weak_alias (__pthread_spin_destroy, pthread_spin_destroy); weak_alias (__pthread_spin_init, pthread_spin_init); weak_alias (__pthread_spin_trylock, pthread_spin_trylock); +weak_alias (__pthread_spin_lock, pthread_spin_lock); weak_alias (__pthread_spin_unlock, pthread_spin_unlock); |