Changeset 381 for trunk/xc_malloc.c
- Timestamp:
- 05/10/2007 03:26:12 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
xc_malloc.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svnmerge-integrated changed
/branches/1.2 merged: 380
- Property svnmerge-integrated changed
-
trunk/xc_malloc.c
r305 r381 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> … … 9 9 #include "utils.h" 10 10 11 struct _xc_m em_t {11 struct _xc_malloc_mem_t { 12 12 const xc_mem_handlers_t *handlers; 13 13 xc_shm_t *shm; … … 107 107 /* }}} */ 108 108 109 /* {{{ xc_shm_t */110 struct _xc_ shm_t {109 /* {{{ _xc_malloc_shm_t */ 110 struct _xc_malloc_shm_t { 111 111 xc_shm_handlers_t *handlers; 112 112 xc_shmsize_t size;

