3 * Dynamic memory manager
5 * This is a lightweight replacement for the standard C library malloc().
7 * If you want to use the standard C library malloc() instead, define
8 * MEM_LIBC_MALLOC to 1 in your lwipopts.h
10 * To let mem_malloc() use pools (prevents fragmentation and is much faster than
11 * a heap but might waste some memory), define MEM_USE_POOLS to 1, define
12 * MEM_USE_CUSTOM_POOLS to 1 and create a file "lwippools.h" that includes a list
13 * of pools like this (more pools can be added between _START and _END):
15 * Define three pools with sizes 256, 512, and 1512 bytes
16 * LWIP_MALLOC_MEMPOOL_START
17 * LWIP_MALLOC_MEMPOOL(20, 256)
18 * LWIP_MALLOC_MEMPOOL(10, 512)
19 * LWIP_MALLOC_MEMPOOL(5, 1512)
20 * LWIP_MALLOC_MEMPOOL_END
24 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
25 * All rights reserved.
27 * Redistribution and use in source and binary forms, with or without modification,
28 * are permitted provided that the following conditions are met:
30 * 1. Redistributions of source code must retain the above copyright notice,
31 * this list of conditions and the following disclaimer.
32 * 2. Redistributions in binary form must reproduce the above copyright notice,
33 * this list of conditions and the following disclaimer in the documentation
34 * and/or other materials provided with the distribution.
35 * 3. The name of the author may not be used to endorse or promote products
36 * derived from this software without specific prior written permission.
38 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
39 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
40 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
41 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
42 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
43 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
44 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
45 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
46 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
49 * This file is part of the lwIP TCP/IP stack.
51 * Author: Adam Dunkels <adam@sics.se>
58 #if !MEM_LIBC_MALLOC /* don't build if not configured for use in lwipopts.h */
63 #include "lwip/stats.h"
69 /* lwIP head implemented with different sized pools */
72 * Allocate memory: determine the smallest pool that is big enough
73 * to contain an element of 'size' and get an element from that pool.
75 * @param size the size in bytes of the memory needed
76 * @return a pointer to the allocated memory or NULL if the pool is empty
79 mem_malloc(mem_size_t size
)
81 struct memp_malloc_helper
*element
;
83 mem_size_t required_size
= size
+ sizeof(struct memp_malloc_helper
);
85 for (poolnr
= MEMP_POOL_FIRST
; poolnr
<= MEMP_POOL_LAST
; poolnr
= (memp_t
)(poolnr
+ 1)) {
86 #if MEM_USE_POOLS_TRY_BIGGER_POOL
88 #endif /* MEM_USE_POOLS_TRY_BIGGER_POOL */
89 /* is this pool big enough to hold an element of the required size
90 plus a struct memp_malloc_helper that saves the pool this element came from? */
91 if (required_size
<= memp_sizes
[poolnr
]) {
95 if (poolnr
> MEMP_POOL_LAST
) {
96 LWIP_ASSERT("mem_malloc(): no pool is that big!", 0);
99 element
= (struct memp_malloc_helper
*)memp_malloc(poolnr
);
100 if (element
== NULL
) {
101 /* No need to DEBUGF or ASSERT: This error is already
102 taken care of in memp.c */
103 #if MEM_USE_POOLS_TRY_BIGGER_POOL
104 /** Try a bigger pool if this one is empty! */
105 if (poolnr
< MEMP_POOL_LAST
) {
109 #endif /* MEM_USE_POOLS_TRY_BIGGER_POOL */
113 /* save the pool number this element came from */
114 element
->poolnr
= poolnr
;
115 /* and return a pointer to the memory directly after the struct memp_malloc_helper */
122 * Free memory previously allocated by mem_malloc. Loads the pool number
123 * and calls memp_free with that pool number to put the element back into
126 * @param rmem the memory element to free
131 struct memp_malloc_helper
*hmem
= (struct memp_malloc_helper
*)rmem
;
133 LWIP_ASSERT("rmem != NULL", (rmem
!= NULL
));
134 LWIP_ASSERT("rmem == MEM_ALIGN(rmem)", (rmem
== LWIP_MEM_ALIGN(rmem
)));
136 /* get the original struct memp_malloc_helper */
139 LWIP_ASSERT("hmem != NULL", (hmem
!= NULL
));
140 LWIP_ASSERT("hmem == MEM_ALIGN(hmem)", (hmem
== LWIP_MEM_ALIGN(hmem
)));
141 LWIP_ASSERT("hmem->poolnr < MEMP_MAX", (hmem
->poolnr
< MEMP_MAX
));
143 /* and put it in the pool we saved earlier */
144 memp_free(hmem
->poolnr
, hmem
);
147 #else /* MEM_USE_POOLS */
148 /* lwIP replacement for your libc malloc() */
151 * The heap is made up as a list of structs of this type.
152 * This does not have to be aligned since for getting its size,
153 * we only use the macro SIZEOF_STRUCT_MEM, which automatically alignes.
156 /** index (-> ram[next]) of the next struct */
158 /** index (-> ram[prev]) of the previous struct */
160 /** 1: this area is used; 0: this area is unused */
164 /** All allocated blocks will be MIN_SIZE bytes big, at least!
165 * MIN_SIZE can be overridden to suit your needs. Smaller values save space,
166 * larger values could prevent too small blocks to fragment the RAM too much. */
169 #endif /* MIN_SIZE */
170 /* some alignment macros: we define them here for better source code layout */
171 #define MIN_SIZE_ALIGNED LWIP_MEM_ALIGN_SIZE(MIN_SIZE)
172 #define SIZEOF_STRUCT_MEM LWIP_MEM_ALIGN_SIZE(sizeof(struct mem))
173 #define MEM_SIZE_ALIGNED LWIP_MEM_ALIGN_SIZE(MEM_SIZE)
175 /** If you want to relocate the heap to external memory, simply define
176 * LWIP_RAM_HEAP_POINTER as a void-pointer to that location.
177 * If so, make sure the memory at that location is big enough (see below on
178 * how that space is calculated). */
179 #ifndef LWIP_RAM_HEAP_POINTER
180 /** the heap. we need one struct mem at the end and some room for alignment */
181 u8_t ram_heap
[MEM_SIZE_ALIGNED
+ (2*SIZEOF_STRUCT_MEM
) + MEM_ALIGNMENT
];
182 #define LWIP_RAM_HEAP_POINTER ram_heap
183 #endif /* LWIP_RAM_HEAP_POINTER */
185 /** pointer to the heap (ram_heap): for alignment, ram is now a pointer instead of an array */
187 /** the last entry, always unused! */
188 static struct mem
*ram_end
;
189 /** pointer to the lowest free block, this is used for faster search */
190 static struct mem
*lfree
;
192 /** concurrent access protection */
193 static sys_mutex_t mem_mutex
;
195 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
197 static volatile u8_t mem_free_count
;
199 /* Allow mem_free from other (e.g. interrupt) context */
200 #define LWIP_MEM_FREE_DECL_PROTECT() SYS_ARCH_DECL_PROTECT(lev_free)
201 #define LWIP_MEM_FREE_PROTECT() SYS_ARCH_PROTECT(lev_free)
202 #define LWIP_MEM_FREE_UNPROTECT() SYS_ARCH_UNPROTECT(lev_free)
203 #define LWIP_MEM_ALLOC_DECL_PROTECT() SYS_ARCH_DECL_PROTECT(lev_alloc)
204 #define LWIP_MEM_ALLOC_PROTECT() SYS_ARCH_PROTECT(lev_alloc)
205 #define LWIP_MEM_ALLOC_UNPROTECT() SYS_ARCH_UNPROTECT(lev_alloc)
207 #else /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
209 /* Protect the heap only by using a semaphore */
210 #define LWIP_MEM_FREE_DECL_PROTECT()
211 #define LWIP_MEM_FREE_PROTECT() sys_mutex_lock(&mem_mutex)
212 #define LWIP_MEM_FREE_UNPROTECT() sys_mutex_unlock(&mem_mutex)
213 /* mem_malloc is protected using semaphore AND LWIP_MEM_ALLOC_PROTECT */
214 #define LWIP_MEM_ALLOC_DECL_PROTECT()
215 #define LWIP_MEM_ALLOC_PROTECT()
216 #define LWIP_MEM_ALLOC_UNPROTECT()
218 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
222 * "Plug holes" by combining adjacent empty struct mems.
223 * After this function is through, there should not exist
224 * one empty struct mem pointing to another empty struct mem.
226 * @param mem this points to a struct mem which just has been freed
227 * @internal this function is only called by mem_free() and mem_trim()
229 * This assumes access to the heap is protected by the calling function
233 plug_holes(struct mem
*mem
)
238 LWIP_ASSERT("plug_holes: mem >= ram", (u8_t
*)mem
>= ram
);
239 LWIP_ASSERT("plug_holes: mem < ram_end", (u8_t
*)mem
< (u8_t
*)ram_end
);
240 LWIP_ASSERT("plug_holes: mem->used == 0", mem
->used
== 0);
242 /* plug hole forward */
243 LWIP_ASSERT("plug_holes: mem->next <= MEM_SIZE_ALIGNED", mem
->next
<= MEM_SIZE_ALIGNED
);
245 nmem
= (struct mem
*)(void *)&ram
[mem
->next
];
246 if (mem
!= nmem
&& nmem
->used
== 0 && (u8_t
*)nmem
!= (u8_t
*)ram_end
) {
247 /* if mem->next is unused and not end of ram, combine mem and mem->next */
251 mem
->next
= nmem
->next
;
252 ((struct mem
*)(void *)&ram
[nmem
->next
])->prev
= (mem_size_t
)((u8_t
*)mem
- ram
);
255 /* plug hole backward */
256 pmem
= (struct mem
*)(void *)&ram
[mem
->prev
];
257 if (pmem
!= mem
&& pmem
->used
== 0) {
258 /* if mem->prev is unused, combine mem and mem->prev */
262 pmem
->next
= mem
->next
;
263 ((struct mem
*)(void *)&ram
[mem
->next
])->prev
= (mem_size_t
)((u8_t
*)pmem
- ram
);
268 * Zero the heap and initialize start, end and lowest-free
275 LWIP_ASSERT("Sanity check alignment",
276 (SIZEOF_STRUCT_MEM
& (MEM_ALIGNMENT
-1)) == 0);
279 ram
= (u8_t
*)LWIP_MEM_ALIGN(LWIP_RAM_HEAP_POINTER
);
280 /* initialize the start of the heap */
281 mem
= (struct mem
*)(void *)ram
;
282 mem
->next
= MEM_SIZE_ALIGNED
;
285 /* initialize the end of the heap */
286 ram_end
= (struct mem
*)(void *)&ram
[MEM_SIZE_ALIGNED
];
288 ram_end
->next
= MEM_SIZE_ALIGNED
;
289 ram_end
->prev
= MEM_SIZE_ALIGNED
;
291 /* initialize the lowest-free pointer to the start of the heap */
292 lfree
= (struct mem
*)(void *)ram
;
294 MEM_STATS_AVAIL(avail
, MEM_SIZE_ALIGNED
);
296 if(sys_mutex_new(&mem_mutex
) != ERR_OK
) {
297 LWIP_ASSERT("failed to create mem_mutex", 0);
302 * Put a struct mem back on the heap
304 * @param rmem is the data portion of a struct mem as returned by a previous
305 * call to mem_malloc()
311 LWIP_MEM_FREE_DECL_PROTECT();
314 LWIP_DEBUGF(MEM_DEBUG
| LWIP_DBG_TRACE
| LWIP_DBG_LEVEL_SERIOUS
, ("mem_free(p == NULL) was called.\n"));
317 LWIP_ASSERT("mem_free: sanity check alignment", (((mem_ptr_t
)rmem
) & (MEM_ALIGNMENT
-1)) == 0);
319 LWIP_ASSERT("mem_free: legal memory", (u8_t
*)rmem
>= (u8_t
*)ram
&&
320 (u8_t
*)rmem
< (u8_t
*)ram_end
);
322 if ((u8_t
*)rmem
< (u8_t
*)ram
|| (u8_t
*)rmem
>= (u8_t
*)ram_end
) {
323 SYS_ARCH_DECL_PROTECT(lev
);
324 LWIP_DEBUGF(MEM_DEBUG
| LWIP_DBG_LEVEL_SEVERE
, ("mem_free: illegal memory\n"));
325 /* protect mem stats from concurrent access */
326 SYS_ARCH_PROTECT(lev
);
327 MEM_STATS_INC(illegal
);
328 SYS_ARCH_UNPROTECT(lev
);
331 /* protect the heap from concurrent access */
332 LWIP_MEM_FREE_PROTECT();
333 /* Get the corresponding struct mem ... */
334 mem
= (struct mem
*)(void *)((u8_t
*)rmem
- SIZEOF_STRUCT_MEM
);
335 /* ... which has to be in a used state ... */
336 LWIP_ASSERT("mem_free: mem->used", mem
->used
);
337 /* ... and is now unused. */
341 /* the newly freed struct is now the lowest */
345 MEM_STATS_DEC_USED(used
, mem
->next
- (mem_size_t
)(((u8_t
*)mem
- ram
)));
347 /* finally, see if prev or next are free also */
349 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
351 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
352 LWIP_MEM_FREE_UNPROTECT();
356 * Shrink memory returned by mem_malloc().
358 * @param rmem pointer to memory allocated by mem_malloc the is to be shrinked
359 * @param newsize required size after shrinking (needs to be smaller than or
360 * equal to the previous size)
361 * @return for compatibility reasons: is always == rmem, at the moment
362 * or NULL if newsize is > old size, in which case rmem is NOT touched
366 mem_trim(void *rmem
, mem_size_t newsize
)
369 mem_size_t ptr
, ptr2
;
370 struct mem
*mem
, *mem2
;
371 /* use the FREE_PROTECT here: it protects with sem OR SYS_ARCH_PROTECT */
372 LWIP_MEM_FREE_DECL_PROTECT();
374 /* Expand the size of the allocated memory region so that we can
375 adjust for alignment. */
376 newsize
= LWIP_MEM_ALIGN_SIZE(newsize
);
378 if(newsize
< MIN_SIZE_ALIGNED
) {
379 /* every data block must be at least MIN_SIZE_ALIGNED long */
380 newsize
= MIN_SIZE_ALIGNED
;
383 if (newsize
> MEM_SIZE_ALIGNED
) {
387 LWIP_ASSERT("mem_trim: legal memory", (u8_t
*)rmem
>= (u8_t
*)ram
&&
388 (u8_t
*)rmem
< (u8_t
*)ram_end
);
390 if ((u8_t
*)rmem
< (u8_t
*)ram
|| (u8_t
*)rmem
>= (u8_t
*)ram_end
) {
391 SYS_ARCH_DECL_PROTECT(lev
);
392 LWIP_DEBUGF(MEM_DEBUG
| LWIP_DBG_LEVEL_SEVERE
, ("mem_trim: illegal memory\n"));
393 /* protect mem stats from concurrent access */
394 SYS_ARCH_PROTECT(lev
);
395 MEM_STATS_INC(illegal
);
396 SYS_ARCH_UNPROTECT(lev
);
399 /* Get the corresponding struct mem ... */
400 mem
= (struct mem
*)(void *)((u8_t
*)rmem
- SIZEOF_STRUCT_MEM
);
401 /* ... and its offset pointer */
402 ptr
= (mem_size_t
)((u8_t
*)mem
- ram
);
404 size
= mem
->next
- ptr
- SIZEOF_STRUCT_MEM
;
405 LWIP_ASSERT("mem_trim can only shrink memory", newsize
<= size
);
406 if (newsize
> size
) {
410 if (newsize
== size
) {
411 /* No change in size, simply return */
415 /* protect the heap from concurrent access */
416 LWIP_MEM_FREE_PROTECT();
418 mem2
= (struct mem
*)(void *)&ram
[mem
->next
];
419 if(mem2
->used
== 0) {
420 /* The next struct is unused, we can simply move it at little */
422 /* remember the old next pointer */
424 /* create new struct mem which is moved directly after the shrinked mem */
425 ptr2
= ptr
+ SIZEOF_STRUCT_MEM
+ newsize
;
427 lfree
= (struct mem
*)(void *)&ram
[ptr2
];
429 mem2
= (struct mem
*)(void *)&ram
[ptr2
];
431 /* restore the next pointer */
433 /* link it back to mem */
437 /* last thing to restore linked list: as we have moved mem2,
438 * let 'mem2->next->prev' point to mem2 again. but only if mem2->next is not
439 * the end of the heap */
440 if (mem2
->next
!= MEM_SIZE_ALIGNED
) {
441 ((struct mem
*)(void *)&ram
[mem2
->next
])->prev
= ptr2
;
443 MEM_STATS_DEC_USED(used
, (size
- newsize
));
444 /* no need to plug holes, we've already done that */
445 } else if (newsize
+ SIZEOF_STRUCT_MEM
+ MIN_SIZE_ALIGNED
<= size
) {
446 /* Next struct is used but there's room for another struct mem with
447 * at least MIN_SIZE_ALIGNED of data.
448 * Old size ('size') must be big enough to contain at least 'newsize' plus a struct mem
449 * ('SIZEOF_STRUCT_MEM') with some data ('MIN_SIZE_ALIGNED').
450 * @todo we could leave out MIN_SIZE_ALIGNED. We would create an empty
451 * region that couldn't hold data, but when mem->next gets freed,
452 * the 2 regions would be combined, resulting in more free memory */
453 ptr2
= ptr
+ SIZEOF_STRUCT_MEM
+ newsize
;
454 mem2
= (struct mem
*)(void *)&ram
[ptr2
];
459 mem2
->next
= mem
->next
;
462 if (mem2
->next
!= MEM_SIZE_ALIGNED
) {
463 ((struct mem
*)(void *)&ram
[mem2
->next
])->prev
= ptr2
;
465 MEM_STATS_DEC_USED(used
, (size
- newsize
));
466 /* the original mem->next is used, so no need to plug holes! */
469 next struct mem is used but size between mem and mem2 is not big enough
470 to create another struct mem
471 -> don't do anyhting.
472 -> the remaining space stays unused since it is too small
474 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
476 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
477 LWIP_MEM_FREE_UNPROTECT();
482 * Adam's mem_malloc() plus solution for bug #17922
483 * Allocate a block of memory with a minimum of 'size' bytes.
485 * @param size is the minimum size of the requested block in bytes.
486 * @return pointer to allocated memory or NULL if no free memory was found.
488 * Note that the returned value will always be aligned (as defined by MEM_ALIGNMENT).
491 mem_malloc(mem_size_t size
)
493 mem_size_t ptr
, ptr2
;
494 struct mem
*mem
, *mem2
;
495 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
496 u8_t local_mem_free_count
= 0;
497 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
498 LWIP_MEM_ALLOC_DECL_PROTECT();
504 /* Expand the size of the allocated memory region so that we can
505 adjust for alignment. */
506 size
= LWIP_MEM_ALIGN_SIZE(size
);
508 if(size
< MIN_SIZE_ALIGNED
) {
509 /* every data block must be at least MIN_SIZE_ALIGNED long */
510 size
= MIN_SIZE_ALIGNED
;
513 if (size
> MEM_SIZE_ALIGNED
) {
517 /* protect the heap from concurrent access */
518 sys_mutex_lock(&mem_mutex
);
519 LWIP_MEM_ALLOC_PROTECT();
520 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
521 /* run as long as a mem_free disturbed mem_malloc */
523 local_mem_free_count
= 0;
524 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
526 /* Scan through the heap searching for a free block that is big enough,
527 * beginning with the lowest free block.
529 for (ptr
= (mem_size_t
)((u8_t
*)lfree
- ram
); ptr
< MEM_SIZE_ALIGNED
- size
;
530 ptr
= ((struct mem
*)(void *)&ram
[ptr
])->next
) {
531 mem
= (struct mem
*)(void *)&ram
[ptr
];
532 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
534 LWIP_MEM_ALLOC_UNPROTECT();
535 /* allow mem_free to run */
536 LWIP_MEM_ALLOC_PROTECT();
537 if (mem_free_count
!= 0) {
538 local_mem_free_count
= mem_free_count
;
541 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
544 (mem
->next
- (ptr
+ SIZEOF_STRUCT_MEM
)) >= size
) {
545 /* mem is not used and at least perfect fit is possible:
546 * mem->next - (ptr + SIZEOF_STRUCT_MEM) gives us the 'user data size' of mem */
548 if (mem
->next
- (ptr
+ SIZEOF_STRUCT_MEM
) >= (size
+ SIZEOF_STRUCT_MEM
+ MIN_SIZE_ALIGNED
)) {
549 /* (in addition to the above, we test if another struct mem (SIZEOF_STRUCT_MEM) containing
550 * at least MIN_SIZE_ALIGNED of data also fits in the 'user data space' of 'mem')
551 * -> split large block, create empty remainder,
552 * remainder must be large enough to contain MIN_SIZE_ALIGNED data: if
553 * mem->next - (ptr + (2*SIZEOF_STRUCT_MEM)) == size,
554 * struct mem would fit in but no data between mem2 and mem2->next
555 * @todo we could leave out MIN_SIZE_ALIGNED. We would create an empty
556 * region that couldn't hold data, but when mem->next gets freed,
557 * the 2 regions would be combined, resulting in more free memory
559 ptr2
= ptr
+ SIZEOF_STRUCT_MEM
+ size
;
560 /* create mem2 struct */
561 mem2
= (struct mem
*)(void *)&ram
[ptr2
];
563 mem2
->next
= mem
->next
;
565 /* and insert it between mem and mem->next */
569 if (mem2
->next
!= MEM_SIZE_ALIGNED
) {
570 ((struct mem
*)(void *)&ram
[mem2
->next
])->prev
= ptr2
;
572 MEM_STATS_INC_USED(used
, (size
+ SIZEOF_STRUCT_MEM
));
574 /* (a mem2 struct does no fit into the user data space of mem and mem->next will always
575 * be used at this point: if not we have 2 unused structs in a row, plug_holes should have
576 * take care of this).
577 * -> near fit or excact fit: do not split, no mem2 creation
578 * also can't move mem->next directly behind mem, since mem->next
579 * will always be used at this point!
582 MEM_STATS_INC_USED(used
, mem
->next
- (mem_size_t
)((u8_t
*)mem
- ram
));
586 /* Find next free block after mem and update lowest free pointer */
587 while (lfree
->used
&& lfree
!= ram_end
) {
588 LWIP_MEM_ALLOC_UNPROTECT();
589 /* prevent high interrupt latency... */
590 LWIP_MEM_ALLOC_PROTECT();
591 lfree
= (struct mem
*)(void *)&ram
[lfree
->next
];
593 LWIP_ASSERT("mem_malloc: !lfree->used", ((lfree
== ram_end
) || (!lfree
->used
)));
595 LWIP_MEM_ALLOC_UNPROTECT();
596 sys_mutex_unlock(&mem_mutex
);
597 LWIP_ASSERT("mem_malloc: allocated memory not above ram_end.",
598 (mem_ptr_t
)mem
+ SIZEOF_STRUCT_MEM
+ size
<= (mem_ptr_t
)ram_end
);
599 LWIP_ASSERT("mem_malloc: allocated memory properly aligned.",
600 ((mem_ptr_t
)mem
+ SIZEOF_STRUCT_MEM
) % MEM_ALIGNMENT
== 0);
601 LWIP_ASSERT("mem_malloc: sanity check alignment",
602 (((mem_ptr_t
)mem
) & (MEM_ALIGNMENT
-1)) == 0);
604 return (u8_t
*)mem
+ SIZEOF_STRUCT_MEM
;
607 #if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
608 /* if we got interrupted by a mem_free, try again */
609 } while(local_mem_free_count
!= 0);
610 #endif /* LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT */
611 LWIP_DEBUGF(MEM_DEBUG
| LWIP_DBG_LEVEL_SERIOUS
, ("mem_malloc: could not allocate %"S16_F
" bytes\n", (s16_t
)size
));
613 LWIP_MEM_ALLOC_UNPROTECT();
614 sys_mutex_unlock(&mem_mutex
);
618 #endif /* MEM_USE_POOLS */
620 * Contiguously allocates enough space for count objects that are size bytes
621 * of memory each and returns a pointer to the allocated memory.
623 * The allocated memory is filled with bytes of value zero.
625 * @param count number of objects to allocate
626 * @param size size of the objects to allocate
627 * @return pointer to allocated memory / NULL pointer if there is an error
629 void *mem_calloc(mem_size_t count
, mem_size_t size
)
633 /* allocate 'count' objects of size 'size' */
634 p
= mem_malloc(count
* size
);
636 /* zero the memory */
637 memset(p
, 0, count
* size
);
642 #endif /* !MEM_LIBC_MALLOC */