Alessandro Nardin commented on a discussion on cpukit/posix/src/aio_suspend.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/275#note_116973

 > +
 > +  pthread_mutex_lock( &suspendcbp->mutex );
 > +  suspendcbp->requests_left = 0;
 > +  suspendcbp->task_id = rtems_task_self();
 > +  suspendcbp->notified = !AIO_SIGNALED;
 > +
 > +  /* Lock request queue */
 > +  pthread_mutex_lock( &aio_request_queue.mutex );
 > +
 > +  /* Iterate over each request */
 > +  for ( i = 0; i < nent; i++ ) {
 > +    if ( list[i] == NULL ) {
 > +      continue;
 > +    }
 > +
 > +    /** Search fd_chain in work_req_chain */

corrected.

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


_______________________________________________
bugs mailing list
bugs@rtems.org
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to