mempoolcontainerprot.h
上传用户:lqx1163
上传日期:2014-08-13
资源大小:9183k
文件大小:6k
源码类别:

MTK

开发平台:

C/C++

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. 
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*****************************************************************************
  36.  *
  37.  * Filename:
  38.  * ---------
  39.  * mempoolcontainerprot.h.
  40.  *
  41.  * Project:
  42.  * --------
  43.  * MAUI
  44.  *
  45.  * Description:
  46.  * ------------
  47.  * This file defines prototypes for memry pool realted functions
  48.  *
  49.  * Author:
  50.  * -------
  51.  * -------
  52.  *
  53.  *============================================================================
  54.  *             HISTORY
  55.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  56.  *------------------------------------------------------------------------------
  57.  * removed!
  58.  *
  59.  * removed!
  60.  * removed!
  61.  * removed!
  62.  *
  63.  *------------------------------------------------------------------------------
  64.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  65.  *============================================================================
  66.  ****************************************************************************/
  67. /**
  68.  * Copyright Notice
  69.  * ?2003 - 2004, Pixtel Communications, Inc., 1489 43rd Ave. W.,
  70.  * Vancouver, B.C. V6M 4K8 Canada. All Rights Reserved.
  71.  *  (It is illegal to remove this copyright notice from this software or any
  72.  *  portion of it)
  73.  */
  74. /**************************************************************
  75.    FILENAME : MemPoolContainerProt.h
  76.    PURPOSE     : Function & structure declarations for MemPoolContainer
  77.    REMARKS     : nil
  78.    AUTHOR      : Vikram
  79.    DATE     : 
  80. **************************************************************/
  81. #ifndef _MMI_MEM_POOL_CONT_PROT_H
  82. #define _MMI_MEM_POOL_CONT_PROT_H
  83. #include "PixtelDataTypes.h"
  84. /***************************************************************************** 
  85. * Define
  86. *****************************************************************************/
  87. typedef enum
  88. {
  89.     MEM_CT_SUCCESS,
  90.     MEM_CT_FAILURE,
  91.     MEM_CT_FREE_POOL_ALLOC_ERROR,
  92.     MEM_CT_NO_POOL_MEM_AVAIL,
  93.     MEM_CT_POOL_NOT_AVAILABLE
  94. } mmi_mem_pool_ret_enum;
  95. /***************************************************************************** 
  96. * Typedef 
  97. *****************************************************************************/
  98. typedef struct
  99. {
  100.     S16 nMinId;
  101.     S16 nMaxId;
  102.     void **unit_list;
  103. } mem_pool_struct;
  104. typedef struct
  105. {
  106.     mem_pool_struct *mem_pools;
  107.     S32 num_used_pool;  /* number of used pool */
  108.     S32 unit_size;      /* size of each unit */
  109.     void *pBuffer;      /* pointer to whole memory pool */
  110.     S16 num_pool;       /* number of pool */
  111.     S16 unit_per_pool;  /* number of units per pool */
  112. } mem_pool_container_struct;
  113. /***************************************************************************** 
  114. * Extern Global Variable
  115. *****************************************************************************/
  116. /***************************************************************************** 
  117. * Extern Global Function
  118. *****************************************************************************/
  119. extern void mmi_mem_insert_pool(mem_pool_container_struct *mem_pool_container, mem_pool_struct *mem_pools);
  120. extern void mmi_mem_create_container(
  121.                 S16 num_pool,
  122.                 S16 unit_per_pool,
  123.                 void *p_buff,
  124.                 S16 unit_size,
  125.                 mem_pool_container_struct *mem_pool_container);
  126. extern void mmi_mem_destroy_container(mem_pool_container_struct *mem_pool_container);
  127. extern S32 mmi_mem_get_free_pool(mem_pool_container_struct *mem_pool_container, mem_pool_struct *mem_pools);
  128. extern mmi_mem_pool_ret_enum mmi_mem_get_values(
  129.                                 mem_pool_container_struct *mem_pool_container,
  130.                                 S16 nMinId,
  131.                                 S16 nMaxId,
  132.                                 void **pValueList,
  133.                                 S16 *pNotAvailPool);
  134. extern S32 mmi_mem_search_unit(mem_pool_container_struct *mem_pool_container, S16 nId);
  135. extern void *mmi_mem_get_free_mem(mem_pool_container_struct *mem_pool_container, mem_pool_struct *mem_pools);
  136. extern BOOL mmi_mem_delete_pool(mem_pool_container_struct *mem_pool_container, S32 nMinId, S32 nMaxId);
  137. #endif /* _MMI_MEM_POOL_CONT_PROT_H */