source: rtems/cpukit/include/rtems/score/chain.h @ 9ed7103

Last change on this file since 9ed7103 was 9ed7103, checked in by Sebastian Huber <sebastian.huber@…>, on 09/22/22 at 12:57:18

score: Simplify Chain_Node definition

Fix documentation.

  • Property mode set to 100644
File size: 3.6 KB
Line 
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/**
4 * @file
5 *
6 * @ingroup RTEMSScoreChain
7 *
8 * @brief This header file provides interfaces of the
9 *   @ref RTEMSScoreChain which are used by the implementation and the API.
10 */
11
12/*
13 *  Copyright (c) 2010 embedded brains GmbH.
14 *
15 *  COPYRIGHT (c) 1989-2006.
16 *  On-Line Applications Research Corporation (OAR).
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 *    notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 *    notice, this list of conditions and the following disclaimer in the
25 *    documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#ifndef _RTEMS_SCORE_CHAIN_H
41#define _RTEMS_SCORE_CHAIN_H
42
43#ifdef __cplusplus
44extern "C" {
45#endif
46
47/**
48 * @defgroup RTEMSScoreChain Chain Handler
49 *
50 * @ingroup RTEMSScore
51 *
52 * @brief This group contains the Chain Handler implementation.
53 *
54 * The Chain Handler is used to manage sets of entities.  This handler
55 * provides two data structures.  The Chain Node data structure is included
56 * as the first part of every data structure that will be placed on
57 * a chain.  The second data structure is Chain Control which is used
58 * to manage a set of Chain Nodes.
59 *
60 * @{
61 */
62
63/**
64 *  @brief This structure represents a chain node.
65 *
66 *  This is used to manage each element (node) which is placed
67 *  on a chain.
68 *
69 *  @note Typically, a more complicated structure will use the
70 *        chain package.  The more complicated structure will
71 *        include a chain node as the first element in its
72 *        control structure.  It will then call the chain package
73 *        with a pointer to that node element.  The node pointer
74 *        and the higher level structure start at the same address
75 *        so the user can cast the pointers back and forth.
76 *
77 */
78typedef struct Chain_Node {
79  /** This points to the node after this one on this chain. */
80  struct Chain_Node *next;
81  /** This points to the node immediate prior to this one on this chain. */
82  struct Chain_Node *previous;
83} Chain_Node;
84
85/**
86 * @brief This union represents a chain control block.
87 *
88 * This is used to manage a chain.  A chain consists of a doubly
89 * linked list of zero or more nodes.
90 *
91 * @note This implementation does not require special checks for
92 *   manipulating the first and last elements on the chain.
93 *   To accomplish this the @a Chain_Control structure is
94 *   treated as two overlapping @ref Chain_Node structures.
95 */
96typedef union {
97  struct {
98    Chain_Node Node;
99    Chain_Node *fill;
100  } Head;
101
102  struct {
103    Chain_Node *fill;
104    Chain_Node Node;
105  } Tail;
106} Chain_Control;
107
108/** @} */
109
110#ifdef __cplusplus
111}
112#endif
113
114#endif
115/* end of include file */
Note: See TracBrowser for help on using the repository browser.