summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-07-13 01:21:32 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-07-13 01:21:32 +0200
commit30ad111b1ab51018d3bc3aad584221aace8bf4ae (patch)
treea5ba2dbc450279a85d53798cd52f776c68814b9e
parent13016409961bd0c37485f49b2d8ccd12850575ed (diff)
Add missing pthread_setcancelstate alias
* forward.c (pthread_setcancelstate): Define alias to __pthread_setcancelstate.
-rw-r--r--forward.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/forward.c b/forward.c
index c04f47c..860c24d 100644
--- a/forward.c
+++ b/forward.c
@@ -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)