Changeset 35
- Timestamp:
- Nov 8, 2005 12:46:10 PM (19 years ago)
- Location:
- pjproject/main
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/main/build/rules.mak
r7 r35 150 150 if test -f $$F; then \ 151 151 echo -n "$(OBJDIR)/" >> $(DEP_FILE); \ 152 if gcc -M M$(DEPFLAGS) $$F | sed '/^#/d' >> $(DEP_FILE); then \152 if gcc -M $(DEPFLAGS) $$F | sed '/^#/d' >> $(DEP_FILE); then \ 153 153 true; \ 154 154 else \ -
pjproject/main/pjlib/include/pj/config.h
r4 r35 227 227 * be set to this value). 228 228 * 229 * Default: 64229 * Default: 256 230 230 */ 231 231 #ifndef PJ_IOQUEUE_MAX_HANDLES 232 # define PJ_IOQUEUE_MAX_HANDLES ( 64)232 # define PJ_IOQUEUE_MAX_HANDLES (256) 233 233 #endif 234 234 -
pjproject/main/pjlib/src/pj/ioqueue_common_abs.c
r28 r35 19 19 static pj_status_t ioqueue_destroy(pj_ioqueue_t *ioqueue) 20 20 { 21 if (ioqueue->auto_delete_lock && ioqueue->lock ) 21 if (ioqueue->auto_delete_lock && ioqueue->lock ) { 22 pj_lock_release(ioqueue->lock); 22 23 return pj_lock_destroy(ioqueue->lock); 23 else24 } else 24 25 return PJ_SUCCESS; 25 26 } -
pjproject/main/pjlib/src/pj/os_core_unix.c
r14 r35 261 261 262 262 /* Call user's entry! */ 263 result = (void*) 263 result = (void*)(long)(*rec->proc)(rec->arg); 264 264 265 265 /* Done. */ -
pjproject/main/pjlib/src/pjlib-test/exception.c
r28 r35 84 84 } 85 85 PJ_DEFAULT { 86 int id = PJ_GET_EXCEPTION(); 87 PJ_LOG(3,("", "...error: got unexpected exception %d (%s)", 88 id, pj_exception_id_name(id))); 86 89 if (!rc) rc = -20; 87 90 } -
pjproject/main/pjlib/src/pjlib-test/list.c
r17 r35 41 41 { 42 42 list_node *node = (list_node*)nd; 43 return (( int)value == node->value) ? 0 : -1;43 return ((long)value == node->value) ? 0 : -1; 44 44 } 45 45 … … 191 191 return -1; 192 192 } 193 p = (list_node*) pj_list_search(&list, (void*) i, &compare_node);193 p = (list_node*) pj_list_search(&list, (void*)(long)i, &compare_node); 194 194 pj_assert( p == &nodes[i] ); 195 195 if (p != &nodes[i]) {
Note: See TracChangeset
for help on using the changeset viewer.