txc_os_mem_mgmt.h
来自「TranSwitch Envoy CE2 & Envoy CE4 设备驱动及编程」· C头文件 代码 · 共 76 行
H
76 行
/*--------------------------------------------------------------------------
******* ****
* ***** ** * * * * * * ***** **** * *
* * * * * ** * * * * * * * * * *
* * * * * * * * **** * * * * * ******
* ***** ****** * * * * * ** * * * * * *
* * * * * * ** * * ** ** * * * * * *
* * * * * * * **** * * * * **** * *
Proprietary and Confidential
This program is made available only to customers and prospective customers
of TranSwitch Corporation under license and may be used only with TranSwitch
semi-conductor products.
Copyright(c) 2004 TranSwitch Inc.
|-----------------------------------------------------------------------|
| |
| ******** ****** |
| ** ** ** ** |
| ** ** ** * |
| ** ** ** |
| ** ** ** |
| ** ** ** |
| ** ** * *** |
| ** ** ** ** |
| ******** ****** |
| |
|-----------------------------------------------------------------------|
| Memory Management Source File |
|-----------------------------------------------------------------------|
| |
| Workfile: txc_os_mem_mgmt.h |
| |
| Description: this file contains memory management defines |
| |
-------------------------------------------------------------------------
Revision History
-------------------------------------------------------------------------
Rev # Date Author Description
----- ------ ------- -----------
1.0 09-Mar-01 R. Ruchandani Initial Revision.
-----------------------------------------------------------------------*/
#ifndef TXC_OS_MEM_MGMT_H
#define TXC_OS_MEM_MGMT_H
/***********************************************************************
** Defines **
***********************************************************************/
/***********************************************************************
** Structures **
***********************************************************************/
/***********************************************************************
** Exported Variables **
***********************************************************************/
/***********************************************************************
** Function Prototypes **
***********************************************************************/
char * TXC_Malloc(unsigned int size);
void TXC_Free(void *ptr);
void * TXC_Memset(void * s, int c, TXC_SIZE_T n);
void TXC_Memcpy(void *destPtr, const void *srcPtr, TXC_SIZE_T numBytes);
#endif /* TXC_OS_MEM_MGMT_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?