Joel Sherrill commented on a discussion on testsuites/psxtests/psxaio04/init.c: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/118#note_109545 > + aiocbp->aio_fildes = fd; > + return aiocbp; > +} > + > +void free_aiocb( struct aiocb *aiocbp ) > +{ > + free ((char*) aiocbp->aio_buf); > + free (aiocbp); > +} > + > +void notify (union sigval sig) > +{ > + kill(getpid(), sig.sival_int ); > +} > + > + free_aiocb does not need a space after the free function name or a cast of the parameter. -- View it on GitLab: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/118#note_109545 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
