Alessandro Nardin commented on a discussion on cpukit/posix/src/lio_listio.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/188#note_111699

 > +        listcbp->requests_left++;
 > +        break;
 > +
 > +      case LIO_WRITE:
 > +        req = init_write_req( list[i] );
 > +        if ( req == NULL ) {
 > +          error = 1;
 > +          list[i]->error_code = errno;
 > +          list[i]->return_value = -1;
 > +          list[i]->return_status = AIO_NOTRETURNED;
 > +          break;
 > +        }
 > +        
 > +        req->listcbp = listcbp;
 > +        result = rtems_aio_enqueue( req );
 > +        if ( result != 0 ){

corrected

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/188#note_111699
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to