diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2022-09-09 14:22:26 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2022-09-09 14:22:26 +0100 |
commit | a364a3a7090b82ddd30e9209df2af56e781d51e4 (patch) | |
tree | 90412a565deeeb7aef54205159c0422af71771c9 /nptl/pthread_create.c | |
parent | 53b251c9ff03ab59ba58fcddb9dc97c69f25fadc (diff) | |
download | glibc-a364a3a7090b82ddd30e9209df2af56e781d51e4.tar.gz glibc-a364a3a7090b82ddd30e9209df2af56e781d51e4.tar.xz glibc-a364a3a7090b82ddd30e9209df2af56e781d51e4.zip |
Use C11 atomics instead of atomic_decrement(_val)
Replace atomic_decrement and atomic_decrement_val with atomic_fetch_add_relaxed. Reviewed-by: DJ Delorie <dj@redhat.com>
Diffstat (limited to 'nptl/pthread_create.c')
-rw-r--r-- | nptl/pthread_create.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 308db65cd4..e7e4ede6b2 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -861,7 +861,7 @@ __pthread_create_2_1 (pthread_t *newthread, const pthread_attr_t *attr, NOTES above). */ /* Oops, we lied for a second. */ - atomic_decrement (&__nptl_nthreads); + atomic_fetch_add_relaxed (&__nptl_nthreads, -1); /* Free the resources. */ __nptl_deallocate_stack (pd); |