Symbol: pthread_setcancelstate
lib/libpthread/pthread.c
142
__strong_alias(__libc_thr_setcancelstate,pthread_setcancelstate)
lib/libpthread/pthread.h
155
int pthread_setcancelstate(int, int *);
tests/lib/libpthread/cancelpoint.h
58
RL(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL));
tests/lib/libpthread/cancelpoint.h
69
RL(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL));
tests/lib/libpthread/h_cancel.c
49
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
tests/lib/libpthread/h_cancel.c
53
pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
tests/lib/libpthread/t_cancellation.c
1032
RZ(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL));
tests/lib/libpthread/t_cancellation.c
1036
RZ(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL));
tests/lib/libpthread/t_cancellation.c
1072
RZ(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &state));
tests/lib/libpthread/t_cancellation.c
1115
RZ(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL));
tests/lib/libpthread/t_cancellation.c
1125
RZ(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL));
tests/lib/libpthread/t_cancellation.c
1213
RZ(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL));
tests/lib/libpthread/t_cancellation.c
1223
RZ(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL)); /* cancel */
tests/lib/libpthread/t_cancellation.c
1268
RZ(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL));
tests/lib/libpthread/t_cancellation.c
1282
RZ(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL)); /* cancel */
tests/lib/libpthread/t_cancellation.c
1370
RZ(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &state));
tests/lib/libpthread/t_cancellation.c
1371
RZ(pthread_setcancelstate(state, NULL));
tests/lib/libpthread/t_cancellation.c
986
RZ(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL));
tests/lib/libpthread/t_cancellation.c
989
RZ(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL));