Ignore:
Timestamp:
May 10, 2006 7:24:40 PM (18 years ago)
Author:
bennylp
Message:

Merge-in RTEMS port patch by Phil Torre <ptorre@…>, alpha release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/compat/os_win32_wince.h

    r338 r433  
    5959 
    6060#define PJ_SOCK_HAS_INET_ATON       0 
     61 
     62/* Set 1 if native sockaddr_in has sin_len member.  
     63 * Default: 0 
     64 */ 
    6165#define PJ_SOCKADDR_HAS_LEN         0 
    6266 
     
    7983 */ 
    8084#define PJ_BLOCKING_CONNECT_ERROR_VAL   WSAEWOULDBLOCK 
     85 
     86/** 
     87 * If this macro is set, it tells select I/O Queue that select() needs to 
     88 * be given correct value of nfds (i.e. largest fd + 1). This requires 
     89 * select ioqueue to re-scan the descriptors on each registration and 
     90 * unregistration. 
     91 * If this macro is not set, then ioqueue will always give FD_SETSIZE for 
     92 * nfds argument when calling select(). 
     93 * 
     94 * Default: 0 
     95 */ 
     96#define PJ_SELECT_NEEDS_NFDS        0 
    8197 
    8298/* Default threading is enabled, unless it's overridden. */ 
     
    103119#define PJ_NATIVE_STRING_IS_UNICODE 1 
    104120 
     121/* If 1, use Read/Write mutex emulation for platforms that don't support it */ 
     122#define PJ_EMULATE_RWMUTEX          1 
     123 
     124/* If 1, pj_thread_create() should enforce the stack size when creating  
     125 * threads. 
     126 * Default: 0 (let OS decide the thread's stack size). 
     127 */ 
     128#define PJ_THREAD_SET_STACK_SIZE        0 
     129 
     130/* If 1, pj_thread_create() should allocate stack from the pool supplied. 
     131 * Default: 0 (let OS allocate memory for thread's stack). 
     132 */ 
     133#define PJ_THREAD_ALLOCATE_STACK        0 
     134 
     135 
    105136#endif  /* __PJ_COMPAT_OS_WIN32_WINCE_H__ */ 
    106137 
Note: See TracChangeset for help on using the changeset viewer.