Changeset 433 for pjproject/trunk/pjlib/include/pj/compat/os_win32_wince.h
- Timestamp:
- May 10, 2006 7:24:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/compat/os_win32_wince.h
r338 r433 59 59 60 60 #define PJ_SOCK_HAS_INET_ATON 0 61 62 /* Set 1 if native sockaddr_in has sin_len member. 63 * Default: 0 64 */ 61 65 #define PJ_SOCKADDR_HAS_LEN 0 62 66 … … 79 83 */ 80 84 #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 81 97 82 98 /* Default threading is enabled, unless it's overridden. */ … … 103 119 #define PJ_NATIVE_STRING_IS_UNICODE 1 104 120 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 105 136 #endif /* __PJ_COMPAT_OS_WIN32_WINCE_H__ */ 106 137
Note: See TracChangeset
for help on using the changeset viewer.