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_linux_kernel.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 
     
    6165 */ 
    6266#define PJ_HAS_SO_ERROR             1 
     67 
     68/** 
     69 * If this macro is set, it tells select I/O Queue that select() needs to 
     70 * be given correct value of nfds (i.e. largest fd + 1). This requires 
     71 * select ioqueue to re-scan the descriptors on each registration and 
     72 * unregistration. 
     73 * If this macro is not set, then ioqueue will always give FD_SETSIZE for 
     74 * nfds argument when calling select(). 
     75 * 
     76 * Default: 0 
     77 */ 
     78#define PJ_SELECT_NEEDS_NFDS        0 
    6379 
    6480/* This value specifies the value set in errno by the OS when a non-blocking 
     
    105121#define PJ_THREAD_DESC_SIZE         128 
    106122 
     123/* If 1, use Read/Write mutex emulation for platforms that don't support it */ 
     124#define PJ_EMULATE_RWMUTEX          0 
     125 
     126/* If 1, pj_thread_create() should enforce the stack size when creating  
     127 * threads. 
     128 * Default: 0 (let OS decide the thread's stack size). 
     129 */ 
     130#define PJ_THREAD_SET_STACK_SIZE        0 
     131 
     132/* If 1, pj_thread_create() should allocate stack from the pool supplied. 
     133 * Default: 0 (let OS allocate memory for thread's stack). 
     134 */ 
     135#define PJ_THREAD_ALLOCATE_STACK        0 
     136 
     137 
     138 
    107139#endif  /* __PJ_COMPAT_OS_LINUX_KERNEL_H__ */ 
    108140 
Note: See TracChangeset for help on using the changeset viewer.