Changeset 380 for branches/1.2/xc_malloc.c
- Timestamp:
- 05/10/2007 01:20:46 AM (19 months ago)
- Files:
-
- 1 modified
-
branches/1.2/xc_malloc.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/xc_malloc.c
r302 r380 1 #define XC_SHM_IMPL 2 #define XC_MEM_IMPL 1 #define XC_SHM_IMPL _xc_malloc_shm_t 2 #define XC_MEM_IMPL _xc_malloc_mem_t 3 3 #include <stdlib.h> 4 4 #include <stdio.h> … … 8 8 #include "align.h" 9 9 10 struct _xc_m em_t {10 struct _xc_malloc_mem_t { 11 11 const xc_mem_handlers_t *handlers; 12 12 xc_shm_t *shm; … … 106 106 /* }}} */ 107 107 108 /* {{{ xc_shm_t */109 struct _xc_ shm_t {108 /* {{{ _xc_malloc_shm_t */ 109 struct _xc_malloc_shm_t { 110 110 xc_shm_handlers_t *handlers; 111 111 xc_shmsize_t size;

