Changeset 381 for trunk/mem.c
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svnmerge-integrated changed from /branches/1.2:1-324,328,334,339,354,358 to /branches/1.2:1-324,328,334,339,354,358,380
-
trunk/mem.c
r306 r381 9 9 #include <stdlib.h> 10 10 #include <string.h> 11 #define XC_ SHM_IMPL12 #define XC_MEM_IMPL 11 #define XC_MEMBLOCK_IMPL _xc_mem_block_t 12 #define XC_MEM_IMPL _xc_mem_mem_t 13 13 #include "xc_shm.h" 14 14 #include "align.h" … … 31 31 32 32 /* {{{ mem */ 33 struct _xc_ block_t {33 struct _xc_mem_block_t { 34 34 #ifdef ALLOC_DEBUG_BLOCK_CHECK 35 35 unsigned int magic; … … 39 39 }; 40 40 41 struct _xc_mem_ t {41 struct _xc_mem_mem_t { 42 42 const xc_mem_handlers_t *handlers; 43 43 xc_shm_t *shm;

