Update contrib.
1 // Copyright (c) 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 the License "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32/include/e32shbuf_priv.h
15 // Shareable Data Buffers
23 #ifndef E32SHBUF_PRIV_H
24 #define E32SHBUF_PRIV_H
31 Defines flags for TShPoolInfo.
33 These values specify the behaviour of the pool and its buffers.
38 enum TShPoolCreateFlags
41 The buffers in this pool are at least the size of an MMU page,
42 are aligned to an MMU page, and may be mapped in and out of a process's
43 address space independently.
45 EShPoolPageAlignedBuffer = 0x0001,
48 The buffers in this pool do not have any size or alignment restrictions beyond
49 that specified by the pool creator.
51 The whole pool is always mapped into a process's address space.
53 EShPoolNonPageAlignedBuffer = 0x0002,
56 This pool maps onto device memory, not system RAM.
58 EShPoolPhysicalMemoryPool = 0x0004,
61 The physical memory backing this pool is contiguous.
63 EShPoolContiguous = 0x0008,
66 Each buffer will only ever be mapped into one process's address space at a time.
68 Requires EShPoolPageAlignedBuffer.
70 EShPoolExclusiveAccess = 0x0010,
73 An unmapped page will be placed between each buffer.
75 Requires EShPoolPageAlignedBuffer.
77 EShPoolGuardPages = 0x0020,
80 Set by automatic shrinking when it is unable to shrink the pool despite there
81 being enough free buffers available (usually due to fragmentation). This prevents
82 the automatic shrinking code being continually called when it can't do anything.
84 EShPoolSuppressShrink = 0x80000000,
89 Specifies client flags.
94 enum TShPoolClientFlags
97 Buffers will be automatically mapped into this process's address space when a handle is
98 created for them. Having this flag clear can be useful for a process that will function
99 as an intermediary, without requiring access to the data in the buffers.
101 EShPoolAutoMapBuf = 0x1000,
104 Newly-allocated buffers will not be mapped into this process's address space.
106 EShPoolNoMapBuf = 0x2000,
111 Specifies the type of notification. (A real enumeration, not bit flags.)
116 enum TShPoolNotifyType
118 EShPoolLowSpace = 1, // notifies when free buffers drop to a certain number
119 EShPoolFreeSpace = 2, // notifies when free buffers rise to a certain number
123 Structure for passing base address and pointer of buffer
128 struct SShBufBaseAndSize
135 #endif // E32SHBUF_PRIV_H