source: rtems/cpukit/libmisc/stackchk/stackchk.h @ dc2a1750

4.104.114.84.95
Last change on this file since dc2a1750 was 8583f82, checked in by Joel Sherrill <joel.sherrill@…>, on 03/08/07 at 21:43:05

2007-03-08 Joel Sherrill <joel@…>

  • libmisc/stackchk/check.c, libmisc/stackchk/internal.h, libmisc/stackchk/stackchk.h: Change dump usage to report usage.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*  stackchk.h
2 *
3 *  This include file contains information necessary to utilize
4 *  and install the stack checker mechanism.
5 *
6 *  COPYRIGHT (c) 1989-2006.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef __RTEMS_STACK_CHECKER_h
17#define __RTEMS_STACK_CHECKER_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*
24 *  rtems_stack_checker_initialize
25 */
26
27void rtems_stack_checker_initialize( void );
28
29/*
30 *  rtems_stack_checker_Dump_usage
31 */
32
33void rtems_stack_checker_report_usage( void );
34
35/*
36 *  rtems_stack_checker_create_extension
37 */
38
39boolean rtems_stack_checker_create_extension(
40  Thread_Control *running,
41  Thread_Control *the_thread
42);
43
44/*
45 *  rtems_stack_checker_begin_extension
46 */
47
48void rtems_stack_checker_begin_extension(
49  Thread_Control *the_thread
50);
51
52/*
53 *  rtems_stack_checker_switch_extension
54 */
55
56void rtems_stack_checker_switch_extension(
57  Thread_Control *running,
58  Thread_Control *heir
59);
60
61/*
62 *  Extension set definition
63 */
64
65#define RTEMS_STACK_CHECKER_EXTENSION \
66{ \
67  rtems_stack_checker_create_extension,        /* rtems_task_create  */ \
68  0,                                           /* rtems_task_start   */ \
69  0,                                           /* rtems_task_restart */ \
70  0,                                           /* rtems_task_delete  */ \
71  rtems_stack_checker_switch_extension,        /* task_switch  */ \
72  rtems_stack_checker_begin_extension,         /* task_begin   */ \
73  0,                                           /* task_exitted */ \
74  0 /* rtems_stack_checker_fatal_extension */, /* fatal        */ \
75}
76
77#ifdef __cplusplus
78}
79#endif
80
81#endif
82/* end of include file */
Note: See TracBrowser for help on using the repository browser.