]> git.sur5r.net Git - freertos/blob - Demo/Common/ethernet/lwIP_130/src/include/lwip/mem.h
Start to re-arrange files to include FreeRTOS+ in main download.
[freertos] / Demo / Common / ethernet / lwIP_130 / src / include / lwip / mem.h
1 /*\r
2  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.\r
3  * All rights reserved.\r
4  *\r
5  * Redistribution and use in source and binary forms, with or without modification,\r
6  * are permitted provided that the following conditions are met:\r
7  *\r
8  * 1. Redistributions of source code must retain the above copyright notice,\r
9  *    this list of conditions and the following disclaimer.\r
10  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
11  *    this list of conditions and the following disclaimer in the documentation\r
12  *    and/or other materials provided with the distribution.\r
13  * 3. The name of the author may not be used to endorse or promote products\r
14  *    derived from this software without specific prior written permission.\r
15  *\r
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED\r
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\r
19  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\r
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\r
21  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\r
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\r
25  * OF SUCH DAMAGE.\r
26  *\r
27  * This file is part of the lwIP TCP/IP stack.\r
28  *\r
29  * Author: Adam Dunkels <adam@sics.se>\r
30  *\r
31  */\r
32 #ifndef __LWIP_MEM_H__\r
33 #define __LWIP_MEM_H__\r
34 \r
35 #include "lwip/opt.h"\r
36 \r
37 #ifdef __cplusplus\r
38 extern "C" {\r
39 #endif\r
40 \r
41 #if MEM_LIBC_MALLOC\r
42 \r
43 #include <stddef.h> /* for size_t */\r
44 \r
45 typedef size_t mem_size_t;\r
46 \r
47 /* aliases for C library malloc() */\r
48 #define mem_init()\r
49 /* in case C library malloc() needs extra protection,\r
50  * allow these defines to be overridden.\r
51  */\r
52 #ifndef mem_free\r
53 #define mem_free(x) free(x)\r
54 #endif\r
55 #ifndef mem_malloc\r
56 #define mem_malloc(x) malloc(x)\r
57 #endif\r
58 #ifndef mem_calloc\r
59 #define mem_calloc(x, y) calloc(x, y)\r
60 #endif\r
61 #ifndef mem_realloc\r
62 #define mem_realloc(x, size) (x)\r
63 #endif\r
64 #else /* MEM_LIBC_MALLOC */\r
65 \r
66 /* MEM_SIZE would have to be aligned, but using 64000 here instead of\r
67  * 65535 leaves some room for alignment...\r
68  */\r
69 #if MEM_SIZE > 64000l\r
70 typedef u32_t mem_size_t;\r
71 #else\r
72 typedef u16_t mem_size_t;\r
73 #endif /* MEM_SIZE > 64000 */\r
74 \r
75 #if MEM_USE_POOLS\r
76 /** mem_init is not used when using pools instead of a heap */\r
77 #define mem_init()\r
78 /** mem_realloc is not used when using pools instead of a heap:\r
79     we can't free part of a pool element and don't want to copy the rest */\r
80 #define mem_realloc(mem, size) (mem)\r
81 #else /* MEM_USE_POOLS */\r
82 /* lwIP alternative malloc */\r
83 void  mem_init(void);\r
84 void *mem_realloc(void *mem, mem_size_t size);\r
85 #endif /* MEM_USE_POOLS */\r
86 void *mem_malloc(mem_size_t size);\r
87 void *mem_calloc(mem_size_t count, mem_size_t size);\r
88 void  mem_free(void *mem);\r
89 #endif /* MEM_LIBC_MALLOC */\r
90 \r
91 #ifndef LWIP_MEM_ALIGN_SIZE\r
92 #define LWIP_MEM_ALIGN_SIZE(size) (((size) + MEM_ALIGNMENT - 1) & ~(MEM_ALIGNMENT-1))\r
93 #endif\r
94 \r
95 #ifndef LWIP_MEM_ALIGN\r
96 #define LWIP_MEM_ALIGN(addr) ((void *)(((mem_ptr_t)(addr) + MEM_ALIGNMENT - 1) & ~(mem_ptr_t)(MEM_ALIGNMENT-1)))\r
97 #endif\r
98 \r
99 #ifdef __cplusplus\r
100 }\r
101 #endif\r
102 \r
103 #endif /* __LWIP_MEM_H__ */\r