equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Buffer Manager for Protocols |
|
15 // |
|
16 |
|
17 /** |
|
18 @file |
|
19 @internalTechnology |
|
20 |
|
21 Buffer Manager for Protocols |
|
22 */ |
|
23 |
|
24 #ifndef __ES_MBMAN_H__ |
|
25 #define __ES_MBMAN_H__ |
|
26 |
|
27 #ifndef __ES_MBUF_H__ |
|
28 #include <es_mbuf.h> |
|
29 #endif |
|
30 #include <elements/rworkerlock.h> // RWorkerThread decleration |
|
31 |
|
32 class CMBufPool; |
|
33 class CMBufManager; |
|
34 class CMBufMemoryAllocator; |
|
35 class CMBufPoolManager; |
|
36 class RMBufPoolChain; // es_mbman.h is exported (eg. for esock), thus all included header files must also be exported |
|
37 // however, RMBufPoolChain is private to mbuf component, hence preferable to use forward decl than include the header file |
|
38 |
|
39 // |
|
40 // MBUF MANAGER |
|
41 // |
|
42 |
|
43 const TUint KMBufDefaultHeapSize = 256 * 1024; |
|
44 |
|
45 #endif |