Sang Woo Kim commented on a discussion on rtemsbsd/rtems/rtems-bsd-syscall-api.c: https://gitlab.rtems.org/rtems/pkg/rtems-libbsd/-/merge_requests/153#note_155912 > + bfd[0], fildes[1], bfd[1]); > + } > + return 0; > +} > + > +int > +pipe(int fildes[2]) > +{ > + return rtems_bsd_pipe(fildes, 0); > +} > + > +int > +pipe2(int fildes[2], int flags) > +{ > + return rtems_bsd_pipe(fildes, flags); > +} Same as above — the proposal is to make the cpukit side weak so this stops depending on link order. -- View it on GitLab: https://gitlab.rtems.org/rtems/pkg/rtems-libbsd/-/merge_requests/153#note_155912 You're receiving this email because of your account on gitlab.rtems.org. Unsubscribe from this thread: https://gitlab.rtems.org/-/sent_notifications/4-469cwhh9rr8cv1atlssw5jx0r-k/unsubscribe | Manage all notifications: https://gitlab.rtems.org/-/profile/notifications | Help: https://gitlab.rtems.org/help
_______________________________________________ bugs mailing list [email protected] http://lists.rtems.org/mailman/listinfo/bugs
