1 | /** @file
|
---|
2 | * IPRT - Memory Management and Manipulation.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | *
|
---|
25 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___iprt_mem_h
|
---|
31 | #define ___iprt_mem_h
|
---|
32 |
|
---|
33 |
|
---|
34 | #include <iprt/cdefs.h>
|
---|
35 | #include <iprt/types.h>
|
---|
36 | #ifdef __cplusplus
|
---|
37 | # include <iprt/autores.h>
|
---|
38 | #endif
|
---|
39 |
|
---|
40 |
|
---|
41 | #ifdef IN_GC
|
---|
42 | # error "There are no RTMem APIs available Guest Context!"
|
---|
43 | #endif
|
---|
44 |
|
---|
45 |
|
---|
46 | /** @defgroup grp_rt_mem RTMem - Memory Management and Manipulation
|
---|
47 | * @ingroup grp_rt
|
---|
48 | * @{
|
---|
49 | */
|
---|
50 |
|
---|
51 | __BEGIN_DECLS
|
---|
52 |
|
---|
53 | /** @def RTMEM_ALIGNMENT
|
---|
54 | * The alignment of the memory blocks returned by RTMemAlloc(), RTMemAllocZ(),
|
---|
55 | * RTMemRealloc(), RTMemTmpAlloc() and RTMemTmpAllocZ() for allocations greater
|
---|
56 | * than RTMEM_ALIGNMENT.
|
---|
57 | */
|
---|
58 | #define RTMEM_ALIGNMENT 8
|
---|
59 |
|
---|
60 | /**
|
---|
61 | * Allocates temporary memory.
|
---|
62 | *
|
---|
63 | * Temporary memory blocks are used for not too large memory blocks which
|
---|
64 | * are believed not to stick around for too long. Using this API instead
|
---|
65 | * of RTMemAlloc() not only gives the heap manager room for optimization
|
---|
66 | * but makes the code easier to read.
|
---|
67 | *
|
---|
68 | * @returns Pointer to the allocated memory.
|
---|
69 | * @returns NULL on failure.
|
---|
70 | * @param cb Size in bytes of the memory block to allocated.
|
---|
71 | */
|
---|
72 | RTDECL(void *) RTMemTmpAlloc(size_t cb);
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * Allocates zero'ed temporary memory.
|
---|
76 | *
|
---|
77 | * Same as RTMemTmpAlloc() but the memory will be zero'ed.
|
---|
78 | *
|
---|
79 | * @returns Pointer to the allocated memory.
|
---|
80 | * @returns NULL on failure.
|
---|
81 | * @param cb Size in bytes of the memory block to allocated.
|
---|
82 | */
|
---|
83 | RTDECL(void *) RTMemTmpAllocZ(size_t cb);
|
---|
84 |
|
---|
85 | /**
|
---|
86 | * Free temporary memory.
|
---|
87 | *
|
---|
88 | * @param pv Pointer to memory block.
|
---|
89 | */
|
---|
90 | RTDECL(void) RTMemTmpFree(void *pv);
|
---|
91 |
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * Allocates memory.
|
---|
95 | *
|
---|
96 | * @returns Pointer to the allocated memory.
|
---|
97 | * @returns NULL on failure.
|
---|
98 | * @param cb Size in bytes of the memory block to allocated.
|
---|
99 | */
|
---|
100 | RTDECL(void *) RTMemAlloc(size_t cb);
|
---|
101 |
|
---|
102 | /**
|
---|
103 | * Allocates zero'ed memory.
|
---|
104 | *
|
---|
105 | * Instead of memset(pv, 0, sizeof()) use this when you want zero'ed
|
---|
106 | * memory. This keeps the code smaller and the heap can skip the memset
|
---|
107 | * in about 0.42% of calls :-).
|
---|
108 | *
|
---|
109 | * @returns Pointer to the allocated memory.
|
---|
110 | * @returns NULL on failure.
|
---|
111 | * @param cb Size in bytes of the memory block to allocated.
|
---|
112 | */
|
---|
113 | RTDECL(void *) RTMemAllocZ(size_t cb);
|
---|
114 |
|
---|
115 | /**
|
---|
116 | * Duplicates a chunk of memory into a new heap block.
|
---|
117 | *
|
---|
118 | * @returns New heap block with the duplicate data.
|
---|
119 | * @returns NULL if we're out of memory.
|
---|
120 | * @param pvSrc The memory to duplicate.
|
---|
121 | * @param cb The amount of memory to duplicate.
|
---|
122 | */
|
---|
123 | RTDECL(void *) RTMemDup(const void *pvSrc, size_t cb);
|
---|
124 |
|
---|
125 | /**
|
---|
126 | * Duplicates a chunk of memory into a new heap block with some
|
---|
127 | * additional zeroed memory.
|
---|
128 | *
|
---|
129 | * @returns New heap block with the duplicate data.
|
---|
130 | * @returns NULL if we're out of memory.
|
---|
131 | * @param pvSrc The memory to duplicate.
|
---|
132 | * @param cbSrc The amount of memory to duplicate.
|
---|
133 | * @param cbExtra The amount of extra memory to allocate and zero.
|
---|
134 | */
|
---|
135 | RTDECL(void *) RTMemDupEx(const void *pvSrc, size_t cbSrc, size_t cbExtra);
|
---|
136 |
|
---|
137 | /**
|
---|
138 | * Reallocates memory.
|
---|
139 | *
|
---|
140 | * @returns Pointer to the allocated memory.
|
---|
141 | * @returns NULL on failure.
|
---|
142 | * @param pvOld The memory block to reallocate.
|
---|
143 | * @param cbNew The new block size (in bytes).
|
---|
144 | */
|
---|
145 | RTDECL(void *) RTMemRealloc(void *pvOld, size_t cbNew);
|
---|
146 |
|
---|
147 | /**
|
---|
148 | * Free memory related to an virtual machine
|
---|
149 | *
|
---|
150 | * @param pv Pointer to memory block.
|
---|
151 | */
|
---|
152 | RTDECL(void) RTMemFree(void *pv);
|
---|
153 |
|
---|
154 | /**
|
---|
155 | * Allocates memory which may contain code.
|
---|
156 | *
|
---|
157 | * @returns Pointer to the allocated memory.
|
---|
158 | * @returns NULL on failure.
|
---|
159 | * @param cb Size in bytes of the memory block to allocate.
|
---|
160 | */
|
---|
161 | RTDECL(void *) RTMemExecAlloc(size_t cb);
|
---|
162 |
|
---|
163 | /**
|
---|
164 | * Free executable/read/write memory allocated by RTMemExecAlloc().
|
---|
165 | *
|
---|
166 | * @param pv Pointer to memory block.
|
---|
167 | */
|
---|
168 | RTDECL(void) RTMemExecFree(void *pv);
|
---|
169 |
|
---|
170 | #if defined(IN_RING0) && defined(RT_ARCH_AMD64) && defined(RT_OS_LINUX)
|
---|
171 | /**
|
---|
172 | * Donate read+write+execute memory to the exec heap.
|
---|
173 | *
|
---|
174 | * This API is specific to AMD64 and Linux/GNU. A kernel module that desires to
|
---|
175 | * use RTMemExecAlloc on AMD64 Linux/GNU will have to donate some statically
|
---|
176 | * allocated memory in the module if it wishes for GCC generated code to work.
|
---|
177 | * GCC can only generate modules that work in the address range ~2GB to ~0
|
---|
178 | * currently.
|
---|
179 | *
|
---|
180 | * The API only accept one single donation.
|
---|
181 | *
|
---|
182 | * @returns IPRT status code.
|
---|
183 | * @param pvMemory Pointer to the memory block.
|
---|
184 | * @param cb The size of the memory block.
|
---|
185 | */
|
---|
186 | RTR0DECL(int) RTR0MemExecDonate(void *pvMemory, size_t cb);
|
---|
187 | #endif /* R0+AMD64+LINUX */
|
---|
188 |
|
---|
189 | /**
|
---|
190 | * Allocate page aligned memory.
|
---|
191 | *
|
---|
192 | * @returns Pointer to the allocated memory.
|
---|
193 | * @returns NULL if we're out of memory.
|
---|
194 | * @param cb Size of the memory block. Will be rounded up to page size.
|
---|
195 | */
|
---|
196 | RTDECL(void *) RTMemPageAlloc(size_t cb);
|
---|
197 |
|
---|
198 | /**
|
---|
199 | * Allocate zero'ed page aligned memory.
|
---|
200 | *
|
---|
201 | * @returns Pointer to the allocated memory.
|
---|
202 | * @returns NULL if we're out of memory.
|
---|
203 | * @param cb Size of the memory block. Will be rounded up to page size.
|
---|
204 | */
|
---|
205 | RTDECL(void *) RTMemPageAllocZ(size_t cb);
|
---|
206 |
|
---|
207 | /**
|
---|
208 | * Free a memory block allocated with RTMemPageAlloc() or RTMemPageAllocZ().
|
---|
209 | *
|
---|
210 | * @param pv Pointer to the block as it was returned by the allocation function.
|
---|
211 | * NULL will be ignored.
|
---|
212 | */
|
---|
213 | RTDECL(void) RTMemPageFree(void *pv);
|
---|
214 |
|
---|
215 | /** Page level protection flags for RTMemProtect().
|
---|
216 | * @{
|
---|
217 | */
|
---|
218 | /** Read access. */
|
---|
219 | #define RTMEM_PROT_NONE 0
|
---|
220 | /** Read access. */
|
---|
221 | #define RTMEM_PROT_READ 1
|
---|
222 | /** Write access. */
|
---|
223 | #define RTMEM_PROT_WRITE 2
|
---|
224 | /** Execute access. */
|
---|
225 | #define RTMEM_PROT_EXEC 4
|
---|
226 | /** @} */
|
---|
227 |
|
---|
228 | /**
|
---|
229 | * Change the page level protection of a memory region.
|
---|
230 | *
|
---|
231 | * @returns iprt status code.
|
---|
232 | * @param pv Start of the region. Will be rounded down to nearest page boundary.
|
---|
233 | * @param cb Size of the region. Will be rounded up to the nearest page boundary.
|
---|
234 | * @param fProtect The new protection, a combination of the RTMEM_PROT_* defines.
|
---|
235 | */
|
---|
236 | RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect);
|
---|
237 |
|
---|
238 |
|
---|
239 | #ifdef IN_RING0
|
---|
240 |
|
---|
241 | /**
|
---|
242 | * Allocates physical contiguous memory (below 4GB).
|
---|
243 | * The allocation is page aligned and the content is undefined.
|
---|
244 | *
|
---|
245 | * @returns Pointer to the memory block. This is page aligned.
|
---|
246 | * @param pPhys Where to store the physical address.
|
---|
247 | * @param cb The allocation size in bytes. This is always
|
---|
248 | * rounded up to PAGE_SIZE.
|
---|
249 | */
|
---|
250 | RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb);
|
---|
251 |
|
---|
252 | /**
|
---|
253 | * Frees memory allocated ysing RTMemContAlloc().
|
---|
254 | *
|
---|
255 | * @param pv Pointer to return from RTMemContAlloc().
|
---|
256 | * @param cb The cb parameter passed to RTMemContAlloc().
|
---|
257 | */
|
---|
258 | RTR0DECL(void) RTMemContFree(void *pv, size_t cb);
|
---|
259 |
|
---|
260 | #endif
|
---|
261 |
|
---|
262 |
|
---|
263 | /** @name Electrical Fence Version of some APIs.
|
---|
264 | * @{
|
---|
265 | */
|
---|
266 |
|
---|
267 | /**
|
---|
268 | * Same as RTMemTmpAlloc() except that it's fenced.
|
---|
269 | *
|
---|
270 | * @returns Pointer to the allocated memory.
|
---|
271 | * @returns NULL on failure.
|
---|
272 | * @param cb Size in bytes of the memory block to allocate.
|
---|
273 | */
|
---|
274 | RTDECL(void *) RTMemEfTmpAlloc(size_t cb);
|
---|
275 |
|
---|
276 | /**
|
---|
277 | * Same as RTMemTmpAllocZ() except that it's fenced.
|
---|
278 | *
|
---|
279 | * @returns Pointer to the allocated memory.
|
---|
280 | * @returns NULL on failure.
|
---|
281 | * @param cb Size in bytes of the memory block to allocate.
|
---|
282 | */
|
---|
283 | RTDECL(void *) RTMemEfTmpAllocZ(size_t cb);
|
---|
284 |
|
---|
285 | /**
|
---|
286 | * Same as RTMemTmpFree() except that it's for fenced memory.
|
---|
287 | *
|
---|
288 | * @param pv Pointer to memory block.
|
---|
289 | */
|
---|
290 | RTDECL(void) RTMemEfTmpFree(void *pv);
|
---|
291 |
|
---|
292 | /**
|
---|
293 | * Same as RTMemAlloc() except that it's fenced.
|
---|
294 | *
|
---|
295 | * @returns Pointer to the allocated memory. Free with RTMemEfFree().
|
---|
296 | * @returns NULL on failure.
|
---|
297 | * @param cb Size in bytes of the memory block to allocate.
|
---|
298 | */
|
---|
299 | RTDECL(void *) RTMemEfAlloc(size_t cb);
|
---|
300 |
|
---|
301 | /**
|
---|
302 | * Same as RTMemAllocZ() except that it's fenced.
|
---|
303 | *
|
---|
304 | * @returns Pointer to the allocated memory.
|
---|
305 | * @returns NULL on failure.
|
---|
306 | * @param cb Size in bytes of the memory block to allocate.
|
---|
307 | */
|
---|
308 | RTDECL(void *) RTMemEfAllocZ(size_t cb);
|
---|
309 |
|
---|
310 | /**
|
---|
311 | * Same as RTMemRealloc() except that it's fenced.
|
---|
312 | *
|
---|
313 | * @returns Pointer to the allocated memory.
|
---|
314 | * @returns NULL on failure.
|
---|
315 | * @param pvOld The memory block to reallocate.
|
---|
316 | * @param cbNew The new block size (in bytes).
|
---|
317 | */
|
---|
318 | RTDECL(void *) RTMemEfRealloc(void *pvOld, size_t cbNew);
|
---|
319 |
|
---|
320 | /**
|
---|
321 | * Free memory allocated by any of the RTMemEf* allocators.
|
---|
322 | *
|
---|
323 | * @param pv Pointer to memory block.
|
---|
324 | */
|
---|
325 | RTDECL(void) RTMemEfFree(void *pv);
|
---|
326 |
|
---|
327 | /**
|
---|
328 | * Same as RTMemDup() except that it's fenced.
|
---|
329 | *
|
---|
330 | * @returns New heap block with the duplicate data.
|
---|
331 | * @returns NULL if we're out of memory.
|
---|
332 | * @param pvSrc The memory to duplicate.
|
---|
333 | * @param cb The amount of memory to duplicate.
|
---|
334 | */
|
---|
335 | RTDECL(void *) RTMemEfDup(const void *pvSrc, size_t cb);
|
---|
336 |
|
---|
337 | /**
|
---|
338 | * Same as RTMemEfDupEx except that it's fenced.
|
---|
339 | *
|
---|
340 | * @returns New heap block with the duplicate data.
|
---|
341 | * @returns NULL if we're out of memory.
|
---|
342 | * @param pvSrc The memory to duplicate.
|
---|
343 | * @param cbSrc The amount of memory to duplicate.
|
---|
344 | * @param cbExtra The amount of extra memory to allocate and zero.
|
---|
345 | */
|
---|
346 | RTDECL(void *) RTMemEfDupEx(const void *pvSrc, size_t cbSrc, size_t cbExtra);
|
---|
347 |
|
---|
348 | /** @def RTMEM_WRAP_TO_EF_APIS
|
---|
349 | * Define RTMEM_WRAP_TO_EF_APIS to wrap RTMem APIs to RTMemEf APIs.
|
---|
350 | */
|
---|
351 | #ifdef RTMEM_WRAP_TO_EF_APIS
|
---|
352 | # define RTMemTmpAlloc RTMemEfTmpAlloc
|
---|
353 | # define RTMemTmpAllocZ RTMemEfTmpAllocZ
|
---|
354 | # define RTMemTmpFree RTMemEfTmpFree
|
---|
355 | # define RTMemAlloc RTMemEfAlloc
|
---|
356 | # define RTMemAllocZ RTMemEfAllocZ
|
---|
357 | # define RTMemRealloc RTMemEfRealloc
|
---|
358 | # define RTMemFree RTMemEfFree
|
---|
359 | # define RTMemDup RTMemEfDup
|
---|
360 | # define RTMemDupEx RTMemEfDupEx
|
---|
361 | #endif
|
---|
362 | #ifdef DOXYGEN_RUNNING
|
---|
363 | # define RTMEM_WRAP_TO_EF_APIS
|
---|
364 | #endif
|
---|
365 |
|
---|
366 | /** @} */
|
---|
367 |
|
---|
368 | __END_DECLS
|
---|
369 |
|
---|
370 |
|
---|
371 | #ifdef __cplusplus
|
---|
372 |
|
---|
373 | /**
|
---|
374 | * Template function wrapping RTMemFree to get the correct Destruct
|
---|
375 | * signature for RTAutoRes.
|
---|
376 | *
|
---|
377 | * We can't use a more complex template here, because the g++ on RHEL 3
|
---|
378 | * chokes on it with an internal compiler error.
|
---|
379 | *
|
---|
380 | * @param T The data type that's being managed.
|
---|
381 | * @param aMem Pointer to the memory that should be free.
|
---|
382 | */
|
---|
383 | template <class T>
|
---|
384 | void RTMemAutoFree(T *aMem)
|
---|
385 | {
|
---|
386 | RTMemFree(aMem);
|
---|
387 | }
|
---|
388 |
|
---|
389 |
|
---|
390 | /**
|
---|
391 | * Template function wrapping NULL to get the correct NilRes signature
|
---|
392 | * for RTAutoRes.
|
---|
393 | *
|
---|
394 | * @param T The data type that's being managed.
|
---|
395 | * @returns NULL with the right type.
|
---|
396 | */
|
---|
397 | template <class T>
|
---|
398 | T *RTMemAutoNil(void)
|
---|
399 | {
|
---|
400 | return (T *)(NULL);
|
---|
401 | }
|
---|
402 |
|
---|
403 |
|
---|
404 | /**
|
---|
405 | * An auto pointer-type template class for managing memory allocating
|
---|
406 | * via C APIs like RTMem (the default).
|
---|
407 | *
|
---|
408 | * The main purpose of this class is to automatically free memory that
|
---|
409 | * isn't explicitly used (released()) when the object goes out of scope.
|
---|
410 | *
|
---|
411 | * As an additional service it can also make the allocations and
|
---|
412 | * reallocations for you if you like, but it can also take of memory
|
---|
413 | * you hand it.
|
---|
414 | *
|
---|
415 | * @param T The data type to manage allocations for.
|
---|
416 | * @param Destruct The function to be used to free the resource.
|
---|
417 | * This will default to RTMemFree.
|
---|
418 | * @param Allocator The function to be used to allocate or reallocate
|
---|
419 | * the managed memory.
|
---|
420 | * This is standard realloc() like stuff, so it's possible
|
---|
421 | * to support simple allocation without actually having
|
---|
422 | * to support reallocating memory if that's a problem.
|
---|
423 | * This will default to RTMemRealloc.
|
---|
424 | */
|
---|
425 | template <class T, void Destruct(T *) = RTMemAutoFree<T>, void *Allocator(void *, size_t) = RTMemRealloc >
|
---|
426 | class RTMemAutoPtr
|
---|
427 | : public RTAutoRes<T *, Destruct, RTMemAutoNil<T> >
|
---|
428 | {
|
---|
429 | public:
|
---|
430 | /**
|
---|
431 | * Constructor.
|
---|
432 | *
|
---|
433 | * @param aPtr Memory pointer to manage. Defaults to NULL.
|
---|
434 | */
|
---|
435 | RTMemAutoPtr(T *aPtr = NULL)
|
---|
436 | : RTAutoRes<T *, Destruct, RTMemAutoNil<T> >(aPtr)
|
---|
437 | {
|
---|
438 | }
|
---|
439 |
|
---|
440 | /**
|
---|
441 | * Free current memory and start managing aPtr.
|
---|
442 | *
|
---|
443 | * @param aPtr Memory pointer to manage.
|
---|
444 | */
|
---|
445 | RTMemAutoPtr &operator=(T *aPtr)
|
---|
446 | {
|
---|
447 | this->RTAutoRes<T *, Destruct, RTMemAutoNil<T> >::operator=(aPtr);
|
---|
448 | return *this;
|
---|
449 | }
|
---|
450 |
|
---|
451 | /**
|
---|
452 | * Dereference with * operator.
|
---|
453 | */
|
---|
454 | T &operator*()
|
---|
455 | {
|
---|
456 | return *this->get();
|
---|
457 | }
|
---|
458 |
|
---|
459 | /**
|
---|
460 | * Dereference with -> operator.
|
---|
461 | */
|
---|
462 | T *operator->()
|
---|
463 | {
|
---|
464 | return this->get();
|
---|
465 | }
|
---|
466 |
|
---|
467 | /**
|
---|
468 | * Accessed with the subscript operator ([]).
|
---|
469 | *
|
---|
470 | * @returns Reference to the element.
|
---|
471 | * @param a_i The element to access.
|
---|
472 | */
|
---|
473 | T &operator[](size_t a_i)
|
---|
474 | {
|
---|
475 | return this->get()[a_i];
|
---|
476 | }
|
---|
477 |
|
---|
478 | /**
|
---|
479 | * Allocates memory and start manage it.
|
---|
480 | *
|
---|
481 | * Any previously managed memory will be freed before making
|
---|
482 | * the new allocation.
|
---|
483 | *
|
---|
484 | * The content of the new memory is undefined when using
|
---|
485 | * the default allocator.
|
---|
486 | *
|
---|
487 | * @returns Success indicator.
|
---|
488 | * @retval true if the new allocation succeeds.
|
---|
489 | * @retval false on failure, no memory is associated with the object.
|
---|
490 | *
|
---|
491 | * @param cElements The new number of elements (of the data type) to allocate.
|
---|
492 | * This defaults to 1.
|
---|
493 | */
|
---|
494 | bool alloc(size_t a_cElements = 1)
|
---|
495 | {
|
---|
496 | this->reset(NULL);
|
---|
497 | T *aNewValue = (T *)(Allocator(NULL, a_cElements * sizeof(T)));
|
---|
498 | this->reset(aNewValue);
|
---|
499 | return aNewValue != NULL;
|
---|
500 | }
|
---|
501 |
|
---|
502 | /**
|
---|
503 | * Reallocate or allocates the memory resource.
|
---|
504 | *
|
---|
505 | * Free the old value if allocation fails.
|
---|
506 | *
|
---|
507 | * The content of any additional memory that was allocated is
|
---|
508 | * undefined when using the default allocator.
|
---|
509 | *
|
---|
510 | * @returns Success indicator.
|
---|
511 | * @retval true if the new allocation succeeds.
|
---|
512 | * @retval false on failure, no memory is associated with the object.
|
---|
513 | *
|
---|
514 | * @param cElements The new number of elements (of the data type) to allocate.
|
---|
515 | * The size of the allocation is the number of elements times
|
---|
516 | * the size of the data type - this is currently what's passed
|
---|
517 | * down to the Allocator.
|
---|
518 | * This defaults to 1.
|
---|
519 | */
|
---|
520 | bool realloc(size_t a_cElements = 1)
|
---|
521 | {
|
---|
522 | T *aNewValue = (T *)(Allocator(this->get(), a_cElements * sizeof(T)));
|
---|
523 | if (aNewValue != NULL)
|
---|
524 | this->release();
|
---|
525 | /* We want this both if aNewValue is non-NULL and if it is NULL. */
|
---|
526 | this->reset(aNewValue);
|
---|
527 | return aNewValue != NULL;
|
---|
528 | }
|
---|
529 | };
|
---|
530 |
|
---|
531 | #endif /* __cplusplus */
|
---|
532 |
|
---|
533 |
|
---|
534 | /** @} */
|
---|
535 |
|
---|
536 |
|
---|
537 | #endif
|
---|
538 |
|
---|