summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/setcanceltype.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-03 12:51:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-03 12:51:09 +0000
commit2b2ab1c0706b4697d1fa8f314d8a1f45ca72b9b9 (patch)
tree1f1de9d636011ceedaff990c5c099ddeba392711 /cpukit/posix/src/setcanceltype.c
parentAdded CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM as a configuration (diff)
downloadrtems-2b2ab1c0706b4697d1fa8f314d8a1f45ca72b9b9.tar.bz2
Renamed POSIX_Thread_cancel_run to _POSIX_Thread_cancel_run since RTEMS
internal symbols are supposed to have leading underscores.
Diffstat (limited to 'cpukit/posix/src/setcanceltype.c')
-rw-r--r--cpukit/posix/src/setcanceltype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/setcanceltype.c b/cpukit/posix/src/setcanceltype.c
index 8533587808..6c09836700 100644
--- a/cpukit/posix/src/setcanceltype.c
+++ b/cpukit/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;
}