Changeset 383 for trunk/include
- Timestamp:
- Dec 5, 2011, 10:30:33 PM (13 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/sh_mem.h
r149 r383 35 35 #define SH_FREE(a) sh_mem_free((a), FIL__, __LINE__) 36 36 #define SH_ALLOC(a) sh_mem_malloc((a), FIL__, __LINE__) 37 #define SH_OALLOC(a,b,c) sh_mem_malloc((a), (b), (c)) 37 38 38 39 #else … … 51 52 #define SH_FREE(a) sh_mem_free(a) 52 53 #define SH_ALLOC(a) sh_mem_malloc(a) 54 #define SH_OALLOC(a,b,c) ((void) (b), \ 55 (void) (c), \ 56 sh_mem_malloc(a)) \ 53 57 54 58 #endif -
trunk/include/sh_pthread.h
r378 r383 31 31 do { \ 32 32 int oldtype; \ 33 int executeStack = 0;\33 volatile int executeStack = 0; \ 34 34 pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); \ 35 35 pthread_cleanup_push(sh_pthread_mutex_unlock, (void*)&(M));\
Note:
See TracChangeset
for help on using the changeset viewer.