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

    r338 r433  
    5555 
    5656#define PJ_SOCK_HAS_INET_ATON       0 
     57 
     58/* Set 1 if native sockaddr_in has sin_len member.  
     59 * Default: 0 
     60 */ 
    5761#define PJ_SOCKADDR_HAS_LEN         0 
    5862 
     
    7680#define PJ_BLOCKING_CONNECT_ERROR_VAL   EINPROGRESS 
    7781 
     82/** 
     83 * If this macro is set, it tells select I/O Queue that select() needs to 
     84 * be given correct value of nfds (i.e. largest fd + 1). This requires 
     85 * select ioqueue to re-scan the descriptors on each registration and 
     86 * unregistration. 
     87 * If this macro is not set, then ioqueue will always give FD_SETSIZE for 
     88 * nfds argument when calling select(). 
     89 * 
     90 * Default: 0 
     91 */ 
     92#define PJ_SELECT_NEEDS_NFDS            0 
     93 
    7894/* Default threading is enabled, unless it's overridden. */ 
    7995#ifndef PJ_HAS_THREADS 
     
    93109#define BSD_COMP 
    94110 
     111/* If 1, use Read/Write mutex emulation for platforms that don't support it */ 
     112#define PJ_EMULATE_RWMUTEX              0 
     113 
     114/* If 1, pj_thread_create() should enforce the stack size when creating  
     115 * threads. 
     116 * Default: 0 (let OS decide the thread's stack size). 
     117 */ 
     118#define PJ_THREAD_SET_STACK_SIZE        0 
     119 
     120/* If 1, pj_thread_create() should allocate stack from the pool supplied. 
     121 * Default: 0 (let OS allocate memory for thread's stack). 
     122 */ 
     123#define PJ_THREAD_ALLOCATE_STACK        0 
     124 
     125 
     126 
    95127#endif  /* __PJ_COMPAT_OS_SUNOS_H__ */ 
    96128 
Note: See TracChangeset for help on using the changeset viewer.