RTEMS  5.0.0
userextdata.h
Go to the documentation of this file.
1 
9 /*
10  * COPYRIGHT (c) 1989-2009.
11  * On-Line Applications Research Corporation (OAR).
12  *
13  * The license and distribution terms for this file may be
14  * found in the file LICENSE in this distribution or at
15  * http://www.rtems.org/license/LICENSE.
16  */
17 
18 #ifndef _RTEMS_SCORE_USEREXTDATA_H
19 #define _RTEMS_SCORE_USEREXTDATA_H
20 
21 #include <rtems/score/userext.h>
22 #include <rtems/score/chain.h>
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
39 typedef struct {
40  Chain_Node Node;
43 
50 typedef struct {
51  Chain_Node Node;
53  User_extensions_Table Callouts;
55 
58 #ifdef __cplusplus
59 }
60 #endif
61 
62 #endif
63 /* end of include file */
Manages the switch callouts.
Definition: userextdata.h:39
Definition: chain.h:65
Chain Handler API.
User extension table.
Definition: userext.h:232
Manages each user extension set.
Definition: userextdata.h:50
void(* User_extensions_thread_switch_extension)(struct _Thread_Control *executing, struct _Thread_Control *heir)
Task switch extension.
Definition: userext.h:156
User Extension Handler API.