Show
Ignore:
Timestamp:
05/10/2007 01:20:46 AM (19 months ago)
Author:
moo
Message:

make life easier for debugging

Files:
1 modified

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 
    33#include <stdlib.h> 
    44#include <stdio.h> 
     
    88#include "align.h" 
    99 
    10 struct _xc_mem_t { 
     10struct _xc_malloc_mem_t { 
    1111    const xc_mem_handlers_t *handlers; 
    1212    xc_shm_t                *shm; 
     
    106106/* }}} */ 
    107107 
    108 /* {{{ xc_shm_t */ 
    109 struct _xc_shm_t { 
     108/* {{{ _xc_malloc_shm_t */ 
     109struct _xc_malloc_shm_t { 
    110110    xc_shm_handlers_t *handlers; 
    111111    xc_shmsize_t       size;