comparison src/nucleus/cs_defs.h @ 0:4e78acac3d88

src/{condat,cs,gpf,nucleus}: import from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:23:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4e78acac3d88
1 /*************************************************************************/
2 /* */
3 /* Copyright Mentor Graphics Corporation 2002 */
4 /* All Rights Reserved. */
5 /* */
6 /* THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS */
7 /* THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS */
8 /* SUBJECT TO LICENSE TERMS. */
9 /* */
10 /*************************************************************************/
11
12 /*************************************************************************/
13 /* */
14 /* FILE NAME VERSION */
15 /* */
16 /* cs_defs.h Nucleus PLUS 1.14 */
17 /* */
18 /* COMPONENT */
19 /* */
20 /* CS - Common Services */
21 /* */
22 /* DESCRIPTION */
23 /* */
24 /* This file contains data structure definitions used in the common */
25 /* service linked list routines. */
26 /* */
27 /* DATA STRUCTURES */
28 /* */
29 /* CS_NODE Link node structure */
30 /* */
31 /* FUNCTIONS */
32 /* */
33 /* None */
34 /* */
35 /* DEPENDENCIES */
36 /* */
37 /* nucleus.h Nucleus PLUS constants */
38 /* */
39 /* HISTORY */
40 /* */
41 /* DATE REMARKS */
42 /* */
43 /* 03-01-1993 Created initial version 1.0 */
44 /* 04-19-1993 Verified version 1.0 */
45 /* 06-01-1993 Added padding conditional into */
46 /* CS_NODE structure, making */
47 /* version 1.0a */
48 /* 06-01-1993 Verified version 1.0a */
49 /* 03-01-1994 Moved include files outside of */
50 /* the file #ifndef to allow the */
51 /* use of actual data structures, */
52 /* resulting in version 1.1 */
53 /* */
54 /* 03-18-1994 Verified version 1.1 */
55 /* 04-17-1996 updated to version 1.2 */
56 /* 03-24-1998 Released version 1.3. */
57 /* 03-26-1999 Released 1.11m (new release */
58 /* numbering scheme) */
59 /* 04-17-2002 Released version 1.13m */
60 /* 11-07-2002 Released version 1.14 */
61 /*************************************************************************/
62
63 #include "nucleus.h" /* Include Nucleus constants */
64
65
66 /* Check to see if the file has been included already. */
67 #ifndef CS_DEFS
68 #define CS_DEFS
69
70
71 /* Define a common node data structure that can be included inside of
72 other system data structures. */
73
74 typedef struct CS_NODE_STRUCT
75 {
76 struct CS_NODE_STRUCT *cs_previous;
77 struct CS_NODE_STRUCT *cs_next;
78 DATA_ELEMENT cs_priority;
79
80 #if PAD_1
81 DATA_ELEMENT cs_padding[PAD_1];
82 #endif
83
84 } CS_NODE;
85
86 #endif /* CS_DEFS */
87
88
89