RTEMS  5.0.0
stack.h
Go to the documentation of this file.
1 
11 /*
12  * COPYRIGHT (c) 1989-2006.
13  * On-Line Applications Research Corporation (OAR).
14  *
15  * The license and distribution terms for this file may be
16  * found in the file LICENSE in this distribution or at
17  * http://www.rtems.org/license/LICENSE.
18  */
19 
20 #ifndef _RTEMS_SCORE_STACK_H
21 #define _RTEMS_SCORE_STACK_H
22 
23 #include <rtems/score/basedefs.h>
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
43 #define STACK_MINIMUM_SIZE CPU_STACK_MINIMUM_SIZE
44 
48 typedef struct {
50  size_t size;
52  void *area;
54 
60 extern uint32_t rtems_minimum_stack_size;
61 
64 #ifdef __cplusplus
65 }
66 #endif
67 
68 #endif
69 /* end of include file */
size_t size
Definition: stack.h:50
uint32_t rtems_minimum_stack_size
Definition: stack.h:48
Basic Definitions.
void * area
Definition: stack.h:52