Ignore:
Timestamp:
Jan 20, 2006 9:03:36 PM (18 years ago)
Author:
bennylp
Message:

Completed testing for WinCE port

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/ioqueue_select.c

    r125 r126  
    424424    } event[PJ_IOQUEUE_MAX_EVENTS_IN_SINGLE_POLL]; 
    425425 
    426     PJ_ASSERT_RETURN(ioqueue, PJ_EINVAL); 
     426    PJ_ASSERT_RETURN(ioqueue, -PJ_EINVAL); 
    427427 
    428428    /* Lock ioqueue before making fd_set copies */ 
     
    461461     
    462462    if (count <= 0) 
    463         return count; 
     463        return -pj_get_netos_error(); 
    464464    else if (count > PJ_IOQUEUE_MAX_EVENTS_IN_SINGLE_POLL) 
    465465        count = PJ_IOQUEUE_MAX_EVENTS_IN_SINGLE_POLL; 
Note: See TracChangeset for help on using the changeset viewer.