- Timestamp:
- 2006-09-10T04:14:39+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
xc_malloc.c (modified) (1 diff)
-
xc_shm.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xc_malloc.c
r148 r153 87 87 static XC_MEM_INIT(xc_mem_malloc_init) /* {{{ */ 88 88 { 89 xc_block_t *b;90 91 89 #define MINSIZE (ALIGN(sizeof(xc_mem_t))) 92 90 /* requires at least the header and 1 tail block */ -
trunk/xc_shm.c
r148 r153 19 19 void xc_shm_init_modules() /* {{{ */ 20 20 { 21 extern void xc_shm_mem_init(); 22 extern void xc_shm_malloc_register(); 23 extern void xc_shm_mmap_register(); 24 21 25 memset(xc_shm_schemes, 0, sizeof(xc_shm_schemes)); 22 23 extern void xc_shm_mem_init();24 26 xc_shm_mem_init(); 25 26 extern void xc_shm_malloc_register();27 27 xc_shm_malloc_register(); 28 29 extern void xc_shm_mmap_register();30 28 xc_shm_mmap_register(); 31 29 }
Note: See TracChangeset
for help on using the changeset viewer.

