Ignore:
Timestamp:
Nov 13, 2017 6:06:25 AM (6 years ago)
Author:
ming
Message:

Re #2062: Remove deprecated Linux kernel implementation

File:
1 edited

Legend:

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

    r5539 r5692  
    547547                bytes_read = read(h->fd, read_op->buf, bytes_read); 
    548548                rc = (bytes_read >= 0) ? PJ_SUCCESS : pj_get_os_error(); 
    549 #           elif defined(PJ_LINUX_KERNEL) && PJ_LINUX_KERNEL != 0 
    550                 bytes_read = sys_read(h->fd, read_op->buf, bytes_read); 
    551                 rc = (bytes_read >= 0) ? PJ_SUCCESS : -bytes_read; 
    552549#           else 
    553550#               error "Implement read() for this platform!" 
Note: See TracChangeset for help on using the changeset viewer.