This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 0/3] Fix semaphore destruction (BZ #12674)


This patch set fixes
https://sourceware.org/bugzilla/show_bug.cgi?id=12674 by either using
64b atomic operations (where available), or by using two separate fields
when only 32b atomic operations are available.  In the latter case, we
keep a conservative estimate of whether there are any waiting threads in
one bit of the field that counts the number of available tokens, thus
allowing sem_post to atomically both add a token and determine whether
it needs to call futex_wake.

The first two patches are changes to the tests, the last big patch is
where the actual fix resides.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]