pmd.c
来自「nucleus 2006 source code」· C语言 代码 · 共 71 行
C
71 行
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Corporation 2004 */
/* All Rights Reserved. */
/* */
/* THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS */
/* THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS */
/* SUBJECT TO LICENSE TERMS. */
/* */
/*************************************************************************/
/*************************************************************************/
/* */
/* FILE NAME VERSION */
/* */
/* pmd.c Nucleus PLUS 1.15 */
/* */
/* COMPONENT */
/* */
/* PM - Partition Memory Management */
/* */
/* DESCRIPTION */
/* */
/* This file contains global data structures for use within the */
/* Partition Memory Management component. */
/* */
/* DATA STRUCTURES */
/* */
/* PMD_Created_Pools_List Pointer to the linked-list */
/* of created partition pools */
/* PMD_Total_Pools Total number of created */
/* partition pools */
/* PMD_List_Protect Partition pool list protect */
/* */
/* FUNCTIONS */
/* */
/* None */
/* */
/* DEPENDENCIES */
/* */
/* pm_defs.h Partition Management constant*/
/* */
/*************************************************************************/
#define NU_SOURCE_FILE
#include "plus/inc/pm_defs.h" /* Partition constants */
/* PMD_Created_Pools_List is the head pointer of the linked list of
created partition pools. If the list is NU_NULL, there are no partition
pools created. */
CS_NODE *PMD_Created_Pools_List;
/* PMD_Total_Pools contains the number of currently created
partition pools. */
UNSIGNED PMD_Total_Pools;
/* PMD_List_Protect is a list protection structure used to block any other
thread from access to the created partition pool list. */
TC_PROTECT PMD_List_Protect;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?