summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/testcancel.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/testcancel.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/testcancel.c')
-rw-r--r--cpukit/posix/src/testcancel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/testcancel.c b/cpukit/posix/src/testcancel.c
index 4e576c7cab..40717c5ab0 100644
--- a/cpukit/posix/src/testcancel.c
+++ b/cpukit/posix/src/testcancel.c
@@ -27,5 +27,5 @@ void pthread_testcancel( void )
if ( thread_support->cancelability_state == PTHREAD_CANCEL_ENABLE &&
thread_support->cancelation_requested )
- POSIX_Thread_cancel_run( _Thread_Executing );
+ _POSIX_Thread_cancel_run( _Thread_Executing );
}