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