Changeset 9ed7103 in rtems
- Timestamp:
- 09/22/22 12:57:18 (15 months ago)
- Branches:
- master
- Children:
- a3717de
- Parents:
- acf1e5b2
- git-author:
- Sebastian Huber <sebastian.huber@…> (09/22/22 12:57:18)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (09/23/22 09:14:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/include/rtems/score/chain.h
racf1e5b2 r9ed7103 62 62 63 63 /** 64 * @typedef Chain_Node 65 * 66 * This type definition promotes the name for the Chain Node used by 67 * all RTEMS code. It is a separate type definition because a forward 68 * reference is required to define it. See @ref Chain_Node_struct for 69 * detailed information. 70 */ 71 typedef struct Chain_Node_struct Chain_Node; 72 73 /** 74 * @struct Chain_Node_struct 64 * @brief This structure represents a chain node. 75 65 * 76 66 * This is used to manage each element (node) which is placed … … 86 76 * 87 77 */ 88 struct Chain_Node_struct{78 typedef struct Chain_Node { 89 79 /** This points to the node after this one on this chain. */ 90 Chain_Node *next;80 struct Chain_Node *next; 91 81 /** This points to the node immediate prior to this one on this chain. */ 92 Chain_Node *previous;93 } ;82 struct Chain_Node *previous; 83 } Chain_Node; 94 84 95 85 /** 96 * @struct Chain_Control86 * @brief This union represents a chain control block. 97 87 * 98 88 * This is used to manage a chain. A chain consists of a doubly
Note: See TracChangeset
for help on using the changeset viewer.