diff options
| author | karlf <[email protected]> | 2016-08-11 13:28:13 -0700 |
|---|---|---|
| committer | karlf <[email protected]> | 2016-08-11 13:28:13 -0700 |
| commit | 96eb96dfb613e4c745db6bd1f53a92fe7e2290fc (patch) | |
| tree | ad5f3ede5cbcd6b598677ce41bcf8318471bdd92 /network/wlan/WDI/COMMON/pool.h | |
| parent | 687b274aa38fd05c8c26e3068932121876d7f745 (diff) | |
Updated for "Windows 10 Anniversary Update" (Version 1607)
Diffstat (limited to 'network/wlan/WDI/COMMON/pool.h')
| -rw-r--r-- | network/wlan/WDI/COMMON/pool.h | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/network/wlan/WDI/COMMON/pool.h b/network/wlan/WDI/COMMON/pool.h deleted file mode 100644 index 9c61df6d..00000000 --- a/network/wlan/WDI/COMMON/pool.h +++ /dev/null @@ -1,64 +0,0 @@ -//--------------------------------------------------------------------------- -// -// Copyright (c) 2014 Realtek Semiconductor, Inc. All rights reserved. -// -//--------------------------------------------------------------------------- -// Description: -// -// - -#ifndef __INC_POOL_H -#define __INC_POOL_H - - -//----------------------------------------------------------------------------- -// Data -//----------------------------------------------------------------------------- -typedef struct _POOL -{ - const char *sig; - const char *name; - const u1Byte *start; - const u1Byte *end; - u4Byte entrySize; - RT_LIST_ENTRY freeList; - u4Byte freeCount; - u4Byte cap; - u4Byte lowMark; - - u8Byte dbgComp; - u4Byte dbgLevel; -}POOL; - -//----------------------------------------------------------------------------- -// Function -//----------------------------------------------------------------------------- - -VOID -Pool_Init( - IN POOL *pool, - IN char *name, - IN u4Byte buflen, - IN VOID *buf, - IN u4Byte entrySize, - IN u8Byte dbgComp, - IN u4Byte dbgLevel - ); - -VOID * -Pool_Acquire( - IN POOL *pool - ); - -VOID -Pool_Release( - IN POOL *pool, - IN VOID *entry - ); - -VOID -Pool_Dump( - IN const POOL *pool - ); - -#endif // #ifndef __INC_POOL_H
\ No newline at end of file |
