diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-07-13 01:21:32 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-07-13 01:21:32 +0200 |
commit | 30ad111b1ab51018d3bc3aad584221aace8bf4ae (patch) | |
tree | a5ba2dbc450279a85d53798cd52f776c68814b9e | |
parent | 13016409961bd0c37485f49b2d8ccd12850575ed (diff) |
Add missing pthread_setcancelstate alias
* forward.c (pthread_setcancelstate): Define alias to
__pthread_setcancelstate.
-rw-r--r-- | forward.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -134,6 +134,7 @@ FORWARD2 (pthread_self, pthread_t, (void), (), return 0) FORWARD (__pthread_setcancelstate, (int state, int *oldstate), (state, oldstate), 0) +strong_alias (__pthread_setcancelstate, pthread_setcancelstate); FORWARD (pthread_setcanceltype, (int type, int *oldtype), (type, oldtype), 0) |