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

    r338 r433  
    5353 
    5454#define PJ_SOCK_HAS_INET_ATON       0 
     55 
     56/* Set 1 if native sockaddr_in has sin_len member.  
     57 * Default: 0 
     58 */ 
    5559#define PJ_SOCKADDR_HAS_LEN         0 
     60 
     61/** 
     62 * If this macro is set, it tells select I/O Queue that select() needs to 
     63 * be given correct value of nfds (i.e. largest fd + 1). This requires 
     64 * select ioqueue to re-scan the descriptors on each registration and 
     65 * unregistration. 
     66 * If this macro is not set, then ioqueue will always give FD_SETSIZE for 
     67 * nfds argument when calling select(). 
     68 * 
     69 * Default: 0 
     70 */ 
     71#define PJ_SELECT_NEEDS_NFDS        0 
    5672 
    5773/* Is errno a good way to retrieve OS errors? 
     
    84100#define PJ_NATIVE_STRING_IS_UNICODE     0 
    85101 
     102/* If 1, use Read/Write mutex emulation for platforms that don't support it */ 
     103#define PJ_EMULATE_RWMUTEX              1 
     104 
     105/* If 1, pj_thread_create() should enforce the stack size when creating  
     106 * threads. 
     107 * Default: 0 (let OS decide the thread's stack size). 
     108 */ 
     109#define PJ_THREAD_SET_STACK_SIZE        0 
     110 
     111/* If 1, pj_thread_create() should allocate stack from the pool supplied. 
     112 * Default: 0 (let OS allocate memory for thread's stack). 
     113 */ 
     114#define PJ_THREAD_ALLOCATE_STACK        0 
     115 
     116 
    86117#endif  /* __PJ_COMPAT_OS_PALMOS_H__ */ 
     118 
Note: See TracChangeset for help on using the changeset viewer.