comparison gsm-fw/nucleus/dmd.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/dmd.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 /* dmd.c Nucleus PLUS 1.14 */
17 /* */
18 /* COMPONENT */
19 /* */
20 /* DM - Dynamic Memory Management */
21 /* */
22 /* DESCRIPTION */
23 /* */
24 /* This file contains global data structures for use within the */
25 /* Dynamic Memory Management component. */
26 /* */
27 /* DATA STRUCTURES */
28 /* */
29 /* DMD_Created_Pools Pointer to the linked-list */
30 /* of created dynamic pools */
31 /* DMD_Total_Pools Total number of created */
32 /* dynamic pools */
33 /* DMD_List_Protect Dynamic pool list protect */
34 /* */
35 /* FUNCTIONS */
36 /* */
37 /* None */
38 /* */
39 /* DEPENDENCIES */
40 /* */
41 /* dm_defs.h Dynamic memory constants */
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 "dm_defs.h" /* Dynamic memory constants */
63
64
65 /* DMD_Created_Pools_List is the head pointer of the linked list of
66 created dynamic memory pools. If the list is NU_NULL, there are no
67 dynamic memory pools created. */
68
69 CS_NODE *DMD_Created_Pools_List;
70
71
72 /* DMD_Total_Pools contains the number of currently created
73 dynamic memory pools. */
74
75 UNSIGNED DMD_Total_Pools;
76
77
78 /* DMD_List_Protect is a list protection structure used to block any other
79 thread from access to the created dynamic memory pool list. */
80
81 TC_PROTECT DMD_List_Protect;
82
83
84
85
86
87