Alessandro Nardin commented on a discussion on cpukit/posix/src/aio_misc.c: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/118#note_109430 > > +void rtems_aio_notify( struct sigevent *sig ) > +{ > + #ifdef RTEMS_POSIX_API > + int result; > + if (sig == NULL) { return; } > + > + switch ( sig->sigev_notify ) { > + > + case SIGEV_SIGNAL: > + result = sigqueue( > + getpid(), > + sig->sigev_signo, > + sig->sigev_value > + ); > + if ( result != 0 ){ Now it should be correct -- View it on GitLab: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/118#note_109430 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
