forked from bminor/glibc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nptl: Remove unnecessary forwarding of pthread_cond_clockwait from libc
In afe4de7, I added forwarding functions from libc to libpthread for __pthread_cond_clockwait and pthread_cond_clockwait to mirror those for pthread_cond_timedwait. These are unnecessary[1], since these functions aren't (yet) being called from within libc itself. Let's remove them. * nptl/forward.c: Remove unnecessary __pthread_cond_clockwait and pthread_cond_clockwait forwarding functions. There are no internal users, so it is unnecessary to expose these functions in libc.so. * sysdeps/nptl/pthread-functions.h (pthread_functions): Remove unnecessary ptr___pthread_cond_clockwait member. * nptl/nptl-init.c (pthread_functions): Remove assignment of removed member. Reviewed-by: Adhemerval Zanella <[email protected]> [1] https://sourceware.org/ml/libc-alpha/2017-10/msg00082.html
- Loading branch information
Showing
4 changed files
with
10 additions
and
10 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,13 @@ | ||
2019-07-18 Mike Crowe <[email protected]> | ||
|
||
* nptl/forward.c: Remove unnecessary __pthread_cond_clockwait and | ||
pthread_cond_clockwait forwarding functions. There are no internal | ||
users, so it is unnecessary to expose these functions in libc.so. | ||
* sysdeps/nptl/pthread-functions.h (pthread_functions): Remove | ||
unnecessary ptr___pthread_cond_clockwait member. | ||
* nptl/nptl-init.c (pthread_functions): Remove assignment of | ||
removed member. | ||
|
||
2019-07-17 Rafal Luzynski <[email protected]> | ||
|
||
[BZ #21897] | ||
|
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