diff options
-rw-r--r-- | sysdeps/hppa/nptl/pthread_spin_init.c | 2 | ||||
-rw-r--r-- | sysdeps/hppa/nptl/pthread_spin_unlock.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/hppa/nptl/pthread_spin_init.c b/sysdeps/hppa/nptl/pthread_spin_init.c index dcb5b82..c44c775 100644 --- a/sysdeps/hppa/nptl/pthread_spin_init.c +++ b/sysdeps/hppa/nptl/pthread_spin_init.c @@ -21,7 +21,7 @@ int __pthread_spin_init (pthread_spinlock_t *lock, int pshared) { - /* CONCURRENCTY NOTES: + /* CONCURRENCY NOTES: The atomic_exchange_release synchronizes-with the atomic_exhange_acq in pthread_spin_lock. diff --git a/sysdeps/hppa/nptl/pthread_spin_unlock.c b/sysdeps/hppa/nptl/pthread_spin_unlock.c index 8a85385..3378c9b 100644 --- a/sysdeps/hppa/nptl/pthread_spin_unlock.c +++ b/sysdeps/hppa/nptl/pthread_spin_unlock.c @@ -21,7 +21,7 @@ int __pthread_spin_unlock (pthread_spinlock_t *lock) { - /* CONCURRENCTY NOTES: + /* CONCURRENCY NOTES: The atomic_exchange_release synchronizes-with the atomic_exhange_acq in pthread_spin_lock. |