comparison nucleus/smd.c @ 0:75a11d740a02

initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 Jun 2016 00:02:41 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:75a11d740a02
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 /* smd.c Nucleus PLUS 1.14 */
17 /* */
18 /* COMPONENT */
19 /* */
20 /* SM - Semaphore Management */
21 /* */
22 /* DESCRIPTION */
23 /* */
24 /* This file contains global data structures for use within the */
25 /* semaphore management component. */
26 /* */
27 /* DATA STRUCTURES */
28 /* */
29 /* SMD_Created_Semaphores_List Pointer to the linked-list */
30 /* of created semaphores */
31 /* SMD_Total_Semaphores Total number of created */
32 /* semaphores */
33 /* SMD_List_Protect Semaphore list protection */
34 /* */
35 /* FUNCTIONS */
36 /* */
37 /* None */
38 /* */
39 /* DEPENDENCIES */
40 /* */
41 /* sm_defs.h Semaphore Management constant*/
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 "sm_defs.h" /* Semaphore constants */
63
64
65 /* SMD_Created_Semaphores_List is the head pointer of the linked list of
66 created semaphores. If the list is NU_NULL, there are no semaphores
67 created. */
68
69 CS_NODE *SMD_Created_Semaphores_List;
70
71
72 /* SMD_Total_Semaphores contains the number of currently created
73 semaphores. */
74
75 UNSIGNED SMD_Total_Semaphores;
76
77
78 /* SMD_List_Protect is a list protection structure used to block any other
79 thread from access to the created semaphore list. */
80
81 TC_PROTECT SMD_List_Protect;
82
83
84
85
86