Ignore:
Timestamp:
Aug 29, 2006 8:44:04 AM (18 years ago)
Author:
bennylp
Message:

Added working mmp files for pjlib/symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/symbian/pjlib/include/pj/compat/os_symbian.h

    r687 r692  
    9292#define PJ_BLOCKING_CONNECT_ERROR_VAL   EINPROGRESS 
    9393 
    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 
    9798 
    9899 
     
    107108 * Override features. 
    108109 */ 
    109 #define PJ_HAS_FLOATING_POINT       0 
    110 #define PJ_HAS_MALLOC               0 
    111 #define PJ_HAS_SEMAPHORE            0 
     110#define PJ_HAS_FLOATING_POINT       1 
     111#define PJ_HAS_MALLOC               1 
     112#define PJ_HAS_SEMAPHORE            1 
    112113#define PJ_HAS_EVENT_OBJ            0 
    113114#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 
    117116#define PJ_TERM_HAS_COLOR           0 
    118117#define PJ_NATIVE_STRING_IS_UNICODE 0 
     
    122121 
    123122/* If 1, use Read/Write mutex emulation for platforms that don't support it */ 
    124 #define PJ_EMULATE_RWMUTEX          0 
     123#define PJ_EMULATE_RWMUTEX          1 
    125124 
    126125/* If 1, pj_thread_create() should enforce the stack size when creating 
Note: See TracChangeset for help on using the changeset viewer.