Changeset 380 for branches/1.2/mem.c
- Timestamp:
- 05/10/2007 01:20:46 AM (19 months ago)
- Files:
-
- 1 modified
-
branches/1.2/mem.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/mem.c
r302 r380 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" … … 30 30 31 31 /* {{{ mem */ 32 struct _xc_ block_t {32 struct _xc_mem_block_t { 33 33 #ifdef ALLOC_DEBUG_BLOCK_CHECK 34 34 unsigned int magic; … … 38 38 }; 39 39 40 struct _xc_mem_ t {40 struct _xc_mem_mem_t { 41 41 const xc_mem_handlers_t *handlers; 42 42 xc_shm_t *shm;

