summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems
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/include/rtems
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/include/rtems')
-rw-r--r--cpukit/posix/include/rtems/posix/cancel.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cpukit/posix/include/rtems/posix/cancel.h b/cpukit/posix/include/rtems/posix/cancel.h
index 30c2f17975..f50b8c6f06 100644
--- a/cpukit/posix/include/rtems/posix/cancel.h
+++ b/cpukit/posix/include/rtems/posix/cancel.h
@@ -13,14 +13,15 @@ typedef struct {
} POSIX_Cancel_Handler_control;
/*
- * POSIX_Thread_cancel_run
+ * _POSIX_Thread_cancel_run
*
* DESCRIPTION:
*
- * XXX
+ * This support routine runs through the chain of cancel handlers that
+ * have been registered and executes them.
*/
-void POSIX_Thread_cancel_run(
+void _POSIX_Thread_cancel_run(
Thread_Control *the_thread
);