Alessandro Nardin commented on a discussion on 
cpukit/include/rtems/posix/aio_misc.h: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/275#note_114318

 > + * @brief Control block for every list involved in a aio_suspend() call.
 > + */
 > +typedef struct
 > +{
 > +  pthread_mutex_t mutex;
 > +
 > +  /** @brief number of requests left to complete the list */
 > +  int requests_left;
 > +
 > +  /** @brief id of the thread that called aio_suspend() */
 > +  int task_id;
 > +
 > +  /** @brief controls if the notification already happend */
 > +  int notified;
 > +
 > +} suspendcb;

renamed it.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/275#note_114318
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