Changeset 593 for branches/1.3/mmap.c
- Timestamp:
- 07/05/2009 06:06:15 AM (4 years ago)
- Location:
- branches/1.3
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/mmap.c
r394 r593 1 2 #undef ALLOC_DEBUG3 1 4 2 #include <stdio.h> … … 34 32 #define XC_SHM_IMPL _xc_mmap_shm_t 35 33 #include "xc_shm.h" 34 #include "utils.h" 36 35 37 36 #ifndef max … … 55 54 }; 56 55 57 #undef NDEBUG58 #ifdef ALLOC_DEBUG59 # define inline60 #else61 # define NDEBUG62 #endif63 #include <assert.h>64 56 /* }}} */ 65 57 #define CHECK(x, e) do { if ((x) == NULL) { zend_error(E_ERROR, "XCache: " e); goto err; } } while (0)

