Changeset 71f4beb in rtems for cpukit/libmisc/stackchk/stackchk.h
- Timestamp:
- 04/15/98 15:08:49 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d07d3eec
- Parents:
- 9b64c2d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/stackchk/stackchk.h
r9b64c2d5 r71f4beb 34 34 void Stack_check_Dump_usage( void ); 35 35 36 /* 37 * Stack_check_Create_extension 38 */ 39 40 boolean Stack_check_Create_extension( 41 Thread_Control *running, 42 Thread_Control *the_thread 43 ); 44 45 /* 46 * Stack_check_Begin_extension 47 */ 48 49 void Stack_check_Begin_extension( 50 Thread_Control *the_thread 51 ); 52 53 /* 54 * Stack_check_Switch_extension 55 */ 56 57 void Stack_check_Switch_extension( 58 Thread_Control *running, 59 Thread_Control *heir 60 ); 61 62 /* 63 * Extension set definition 64 */ 65 66 #define STACK_CHECKER_EXTENSION \ 67 { \ 68 Stack_check_Create_extension, /* rtems_task_create */ \ 69 0, /* rtems_task_start */ \ 70 0, /* rtems_task_restart */ \ 71 0, /* rtems_task_delete */ \ 72 Stack_check_Switch_extension, /* task_switch */ \ 73 Stack_check_Begin_extension, /* task_begin */ \ 74 0, /* task_exitted */ \ 75 0 /* Stack_check_Fatal_extension */, /* fatal */ \ 76 } 77 36 78 #ifdef __cplusplus 37 79 }
Note: See TracChangeset
for help on using the changeset viewer.