summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/setcanceltype.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src/setcanceltype.c')
-rw-r--r--c/src/exec/posix/src/setcanceltype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/posix/src/setcanceltype.c b/c/src/exec/posix/src/setcanceltype.c
index 8533587808..6c09836700 100644
--- a/c/src/exec/posix/src/setcanceltype.c
+++ b/c/src/exec/posix/src/setcanceltype.c
@@ -40,7 +40,7 @@ int pthread_setcanceltype(
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;
}