projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fd4a98
)
fix off-by-one error in sem_(timed)wait (using old sem value instead of new)
author
Rich Felker
<dalias@aerifal.cx>
Mon, 7 Mar 2011 23:09:24 +0000
(18:09 -0500)
committer
Rich Felker
<dalias@aerifal.cx>
Mon, 7 Mar 2011 23:09:24 +0000
(18:09 -0500)
src/thread/sem_timedwait.c
patch
|
blob
|
history
diff --git
a/src/thread/sem_timedwait.c
b/src/thread/sem_timedwait.c
index e660436422de56957631f3feb2bee39a73b19690..e6c2495af75aaf2205b07068d0eea6ee43e8511b 100644
(file)
--- a/
src/thread/sem_timedwait.c
+++ b/
src/thread/sem_timedwait.c
@@
-7,7
+7,7
@@
int sem_timedwait(sem_t *sem, const struct timespec *at)
for (;;) {
if (a_fetch_add(sem->__val, -1) > 0) return 0;
- val = a_fetch_add(sem->__val, 1);
+ val = a_fetch_add(sem->__val, 1)
+1
;
CANCELPT_BEGIN;
if (val <= 0 && __timedwait(sem->__val, val, CLOCK_REALTIME, at, 0) == ETIMEDOUT) {
errno = ETIMEDOUT;