forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
C11 threads: Fix timeout and locking issues
- Loading branch information
1 parent
25123a1
commit d6b8f84
Showing
5 changed files
with
61 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
2018-07-25 Florian Weimer <[email protected]> | ||
|
||
* nptl/tst-mtx-timedlock.c (do_test): Implement carry from | ||
nanoseconds into seconds. | ||
* nptl/tst-cnd-basic.c (signal_parent): Lock and unlock mutex. | ||
(do_test): Likewise. | ||
* nptl/tst-cnd-timedwait.c (signal_parent): Likewise. | ||
(do_test): Likewise. Avoid nanosecond overflow and spurious | ||
timeouts due to system load. | ||
* nptl/tst-cnd-broadcast.c (waiting_threads): New variable. | ||
(child_wait): Increment it. | ||
(do_test): Wait as long as necessary until all expected threads | ||
have arrived. | ||
|
||
2018-07-25 Vedvyas Shanbhogue <[email protected]> | ||
H.J. Lu <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters