source: rtems/cpukit/libmisc/stackchk/internal.h @ a5b6cdd

4.104.114.95
Last change on this file since a5b6cdd was a5b6cdd, checked in by Joel Sherrill <joel.sherrill@…>, on 09/08/08 at 15:19:34

2008-09-08 Joel Sherrill <joel.sherrill@…>

  • libcsupport/include/rtems/libio_.h, libcsupport/src/libio_sockets.c, libfs/src/dosfs/fat.h, libfs/src/dosfs/msdos.h, libfs/src/imfs/deviceio.c, libmisc/monitor/mon-monitor.c, libmisc/monitor/mon-object.c, libmisc/monitor/mon-symbols.c, libmisc/monitor/monitor.h, libmisc/stackchk/internal.h, rtems/inline/rtems/rtems/part.inl, score/include/rtems/system.h, score/include/rtems/score/bitfield.h, score/src/mpci.c, score/src/objectextendinformation.c, score/src/threadmp.c: Remove extraneous spaces.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*  internal.h
2 *
3 *  This include file contains internal information
4 *  for the RTEMS stack checker.
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 __INTERNAL_STACK_CHECK_h
17#define __INTERNAL_STACK_CHECK_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*
24 *  This structure is used to fill in and compare the "end of stack"
25 *  marker pattern.
26 *  pattern area must be a multiple of 4 words.
27 */
28
29#ifdef CPU_STACK_CHECK_SIZE
30#define PATTERN_SIZE_WORDS      (((CPU_STACK_CHECK_SIZE / 4) + 3) & ~0x3)
31#else
32#define PATTERN_SIZE_WORDS      (4)
33#endif
34
35#define PATTERN_SIZE_BYTES      (PATTERN_SIZE_WORDS * sizeof(uint32_t))
36
37typedef struct {
38   uint32_t    pattern[ PATTERN_SIZE_WORDS ];
39} Stack_check_Control;
40
41/*
42 *  The pattern used to fill the entire stack.
43 */
44
45#define BYTE_PATTERN 0xA5
46#define U32_PATTERN 0xA5A5A5A5
47
48/*
49 *  rtems_stack_checker_create_extension
50 */
51
52bool rtems_stack_checker_create_extension(
53  Thread_Control *running,
54  Thread_Control *the_thread
55);
56
57/*
58 *  rtems_stack_checker_begin_extension
59 */
60
61void rtems_stack_checker_begin_extension(
62  Thread_Control *the_thread
63);
64
65/*
66 *  rtems_stack_checker_switch_extension
67 */
68
69void rtems_stack_checker_switch_extension(
70  Thread_Control *running,
71  Thread_Control *heir
72);
73
74/*
75 *  rtems_stack_checker_fatal_extension
76 */
77
78void rtems_stack_checker_fatal_extension(
79    Internal_errors_Source  source,
80    bool                    is_internal,
81    uint32_t                status
82);
83
84/*
85 *  rtems_stack_checker_report_usage
86 */
87
88void rtems_stack_checker_report_usage( void );
89
90#ifdef __cplusplus
91}
92#endif
93
94#endif
95/* end of include file */
Note: See TracBrowser for help on using the repository browser.