Changeset 305 for trunk/xc_malloc.c

Show
Ignore:
Timestamp:
12/08/2006 04:11:19 PM (2 years ago)
Author:
moo
Message:

TRACE() instead of ifdef/fprintf

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/xc_malloc.c

    r302 r305  
    77#include "php.h" 
    88#include "align.h" 
     9#include "utils.h" 
    910 
    1011struct _xc_mem_t { 
     
    112113    xc_shmsize_t       memoffset; 
    113114}; 
    114  
    115 #undef NDEBUG 
    116 #ifdef ALLOC_DEBUG 
    117 #   define inline 
    118 #else 
    119 #   define NDEBUG 
    120 #endif 
    121 #include <assert.h> 
    122115/* }}} */ 
    123116