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-08-20 22:12:33 +0200 |
commit | 80d014410ffdd3ce86ff7dcc7d8ca695f6fbb2ed (patch) | |
tree | 637443bcffc24f2255d2ae5fce02abf3287569b0 | |
parent | d38e26fad6a770477fdf61175428a34a5e867b55 (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) |