summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/setcancelstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src/setcancelstate.c')
-rw-r--r--c/src/exec/posix/src/setcancelstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/posix/src/setcancelstate.c b/c/src/exec/posix/src/setcancelstate.c
index bb1c014ade..407a76dfb7 100644
--- a/c/src/exec/posix/src/setcancelstate.c
+++ b/c/src/exec/posix/src/setcancelstate.c
@@ -40,7 +40,7 @@ int pthread_setcancelstate(
if ( thread_support->cancelability_state == PTHREAD_CANCEL_ENABLE &&
thread_support->cancelability_type == PTHREAD_CANCEL_ASYNCHRONOUS &&
thread_support->cancelation_requested )
- POSIX_Thread_cancel_run( _Thread_Executing );
+ _POSIX_Thread_cancel_run( _Thread_Executing );
return 0;
}