summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/stackchk/stackchk.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-13 16:22:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-13 16:22:24 +0000
commit7ac4ae92d056ac2962b25ebd1fe93458419eeb1d (patch)
tree33380f329952634e0b9f259b358f60670e335365 /cpukit/libmisc/stackchk/stackchk.h
parent2006-09-13 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-7ac4ae92d056ac2962b25ebd1fe93458419eeb1d.tar.bz2
2006-09-13 Joel Sherrill <joel@OARcorp.com>
* libmisc/stackchk/check.c, libmisc/stackchk/internal.h, libmisc/stackchk/stackchk.h: Move stack to first class citizen status. Include it in User Manual and rename to start with rtems_.
Diffstat (limited to 'cpukit/libmisc/stackchk/stackchk.h')
-rw-r--r--cpukit/libmisc/stackchk/stackchk.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/cpukit/libmisc/stackchk/stackchk.h b/cpukit/libmisc/stackchk/stackchk.h
index efe4ce9803..94f04b9dde 100644
--- a/cpukit/libmisc/stackchk/stackchk.h
+++ b/cpukit/libmisc/stackchk/stackchk.h
@@ -3,7 +3,7 @@
* This include file contains information necessary to utilize
* and install the stack checker mechanism.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2006.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -13,47 +13,47 @@
* $Id$
*/
-#ifndef __STACK_CHECK_h
-#define __STACK_CHECK_h
+#ifndef __RTEMS_STACK_CHECKER_h
+#define __RTEMS_STACK_CHECKER_h
#ifdef __cplusplus
extern "C" {
#endif
/*
- * Stack_check_Initialize
+ * rtems_stack_checker_initialize
*/
-void Stack_check_Initialize( void );
+void rtems_stack_checker_initialize( void );
/*
- * Stack_check_Dump_usage
+ * rtems_stack_checker_Dump_usage
*/
-void Stack_check_Dump_usage( void );
+void rtems_stack_checker_dump_usage( void );
/*
- * Stack_check_Create_extension
+ * rtems_stack_checker_create_extension
*/
-boolean Stack_check_Create_extension(
+boolean rtems_stack_checker_create_extension(
Thread_Control *running,
Thread_Control *the_thread
);
/*
- * Stack_check_Begin_extension
+ * rtems_stack_checker_begin_extension
*/
-void Stack_check_Begin_extension(
+void rtems_stack_checker_begin_extension(
Thread_Control *the_thread
);
/*
- * Stack_check_Switch_extension
+ * rtems_stack_checker_switch_extension
*/
-void Stack_check_Switch_extension(
+void rtems_stack_checker_switch_extension(
Thread_Control *running,
Thread_Control *heir
);
@@ -62,16 +62,16 @@ void Stack_check_Switch_extension(
* Extension set definition
*/
-#define STACK_CHECKER_EXTENSION \
+#define RTEMS_STACK_CHECKER_EXTENSION \
{ \
- Stack_check_Create_extension, /* rtems_task_create */ \
- 0, /* rtems_task_start */ \
- 0, /* rtems_task_restart */ \
- 0, /* rtems_task_delete */ \
- Stack_check_Switch_extension, /* task_switch */ \
- Stack_check_Begin_extension, /* task_begin */ \
- 0, /* task_exitted */ \
- 0 /* Stack_check_Fatal_extension */, /* fatal */ \
+ rtems_stack_checker_create_extension, /* rtems_task_create */ \
+ 0, /* rtems_task_start */ \
+ 0, /* rtems_task_restart */ \
+ 0, /* rtems_task_delete */ \
+ rtems_stack_checker_switch_extension, /* task_switch */ \
+ rtems_stack_checker_begin_extension, /* task_begin */ \
+ 0, /* task_exitted */ \
+ 0 /* rtems_stack_checker_fatal_extension */, /* fatal */ \
}
#ifdef __cplusplus