RTEMS | Draft: posix/aio: Implemented aio_suspend() (!275)
Alessandro Nardin (@AlessandroNardin)
gitlab at rtems.org
Mon Nov 11 09:43:00 UTC 2024
Alessandro Nardin commented on a discussion on cpukit/posix/src/aio_suspend.c: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/275#note_114697
> + r_chain = rtems_aio_search_fd( work_req_chain, list[i]->aio_fildes, 0 );
> + if ( r_chain != NULL ) {
> + //SEARCH IN CHAIN
> + fd_chain = &r_chain->perfd;
> + node = rtems_chain_first( fd_chain );
> + current = (rtems_aio_request *) node;
> +
> + while ( !rtems_chain_is_tail( fd_chain, node ) && current->aiocbp != list[i] ) {
> + node = rtems_chain_next( node );
> + current = (rtems_aio_request *) node;
> + }
> +
> + if ( !rtems_chain_is_tail( fd_chain, node ) ){
> + if ( current->suspendcbp == NULL ) {
> + current->suspendcbp = suspendcbp;
> + }
I refactored the entire body of the for loop and extracted the search logic into an internal function.
--
View it on GitLab: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/275#note_114697
You're receiving this email because of your account on gitlab.rtems.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/bugs/attachments/20241111/6a539adc/attachment-0001.htm>
More information about the bugs
mailing list