- Timestamp:
- Aug 29, 2006 8:44:04 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/symbian/pjlib/include/pj/compat/os_symbian.h
r687 r692 92 92 #define PJ_BLOCKING_CONNECT_ERROR_VAL EINPROGRESS 93 93 94 #ifndef PJ_HAS_THREADS 95 # define PJ_HAS_THREADS (1) 96 #endif 94 /* 95 * We don't want to use threads in Symbian 96 */ 97 #define PJ_HAS_THREADS 0 97 98 98 99 … … 107 108 * Override features. 108 109 */ 109 #define PJ_HAS_FLOATING_POINT 0110 #define PJ_HAS_MALLOC 0111 #define PJ_HAS_SEMAPHORE 0110 #define PJ_HAS_FLOATING_POINT 1 111 #define PJ_HAS_MALLOC 1 112 #define PJ_HAS_SEMAPHORE 1 112 113 #define PJ_HAS_EVENT_OBJ 0 113 114 #define PJ_HAS_HIGH_RES_TIMER 1 114 #ifndef PJ_OS_HAS_CHECK_STACK 115 # define PJ_OS_HAS_CHECK_STACK 0 116 #endif 115 #define PJ_OS_HAS_CHECK_STACK 0 117 116 #define PJ_TERM_HAS_COLOR 0 118 117 #define PJ_NATIVE_STRING_IS_UNICODE 0 … … 122 121 123 122 /* If 1, use Read/Write mutex emulation for platforms that don't support it */ 124 #define PJ_EMULATE_RWMUTEX 0123 #define PJ_EMULATE_RWMUTEX 1 125 124 126 125 /* If 1, pj_thread_create() should enforce the stack size when creating
Note: See TracChangeset
for help on using the changeset viewer.