comparison gsm-fw/nucleus/evd.c @ 143:afceeeb2cba1

Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 12 Nov 2013 05:35:48 +0000
parents nuc-fw/nucleus/evd.c@947b1f473960
children
comparison
equal deleted inserted replaced
142:15d5977390c2 143:afceeeb2cba1
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 /* evd.c Nucleus PLUS 1.14 */
17 /* */
18 /* COMPONENT */
19 /* */
20 /* EV - Event Group Management */
21 /* */
22 /* DESCRIPTION */
23 /* */
24 /* This file contains global data structures for use within the */
25 /* Event Group Management component. */
26 /* */
27 /* DATA STRUCTURES */
28 /* */
29 /* EVD_Created_Event_Groups_List Pointer to the linked-list */
30 /* of created event groups */
31 /* EVD_Total_Event_Groups Total number of created */
32 /* event groups */
33 /* EVD_List_Protect Event Group list protection */
34 /* */
35 /* FUNCTIONS */
36 /* */
37 /* None */
38 /* */
39 /* DEPENDENCIES */
40 /* */
41 /* ev_defs.h Event Group Management const.*/
42 /* */
43 /* HISTORY */
44 /* */
45 /* DATE REMARKS */
46 /* */
47 /* 03-01-1993 Created initial version 1.0 */
48 /* 04-19-1993 Verified version 1.0 */
49 /* 03-01-1994 Modified copyright, resulting in */
50 /* version 1.1 */
51 /* */
52 /* 03-18-1994 Verified version 1.1 */
53 /* 04-17-1996 updated to version 1.2 */
54 /* 03-24-1998 Released version 1.3. */
55 /* 03-26-1999 Released 1.11m (new release */
56 /* numbering scheme) */
57 /* 04-17-2002 Released version 1.13m */
58 /* 11-07-2002 Released version 1.14 */
59 /*************************************************************************/
60 #define NU_SOURCE_FILE
61
62 #include "ev_defs.h" /* Event Group constants */
63
64
65 /* EVD_Created_Event_Groups_List is the head pointer of the linked list of
66 created event groups. If the list is NU_NULL, there are no event groups
67 created. */
68
69 CS_NODE *EVD_Created_Event_Groups_List;
70
71
72 /* EVD_Total_Event_Groups contains the number of currently created
73 event groups. */
74
75 UNSIGNED EVD_Total_Event_Groups;
76
77
78 /* EVD_List_Protect is a list protection structure used to block any other
79 thread from access to the created event group list. */
80
81 TC_PROTECT EVD_List_Protect;
82
83
84
85
86
87