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.h

    r338 r433  
    6161 
    6262#define PJ_SOCK_HAS_INET_ATON       0 
     63 
     64/* Set 1 if native sockaddr_in has sin_len member.  
     65 * Default: 0 
     66 */ 
    6367#define PJ_SOCKADDR_HAS_LEN         0 
    6468 
     
    8286#define PJ_BLOCKING_CONNECT_ERROR_VAL   WSAEWOULDBLOCK 
    8387 
     88/** 
     89 * If this macro is set, it tells select I/O Queue that select() needs to 
     90 * be given correct value of nfds (i.e. largest fd + 1). This requires 
     91 * select ioqueue to re-scan the descriptors on each registration and 
     92 * unregistration. 
     93 * If this macro is not set, then ioqueue will always give FD_SETSIZE for 
     94 * nfds argument when calling select(). 
     95 * 
     96 * Default: 0 
     97 */ 
     98#define PJ_SELECT_NEEDS_NFDS            0 
     99 
    84100/* Default threading is enabled, unless it's overridden. */ 
    85101#ifndef PJ_HAS_THREADS 
     
    96112#define PJ_ATOMIC_VALUE_TYPE            long 
    97113 
     114/* If 1, use Read/Write mutex emulation for platforms that don't support it */ 
     115#define PJ_EMULATE_RWMUTEX              1 
     116 
     117/* If 1, pj_thread_create() should enforce the stack size when creating  
     118 * threads. 
     119 * Default: 0 (let OS decide the thread's stack size). 
     120 */ 
     121#define PJ_THREAD_SET_STACK_SIZE        0 
     122 
     123/* If 1, pj_thread_create() should allocate stack from the pool supplied. 
     124 * Default: 0 (let OS allocate memory for thread's stack). 
     125 */ 
     126#define PJ_THREAD_ALLOCATE_STACK        0 
     127 
     128 
    98129#endif  /* __PJ_COMPAT_OS_WIN32_H__ */ 
     130 
Note: See TracChangeset for help on using the changeset viewer.