mazen Adel commented on a discussion on cpukit/posix/src/condclockwait.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/547#note_126976

 > +#endif
 > +
 > +#include <rtems/posix/condimpl.h>
 > +
 > +int pthread_cond_clockwait(
 > +  pthread_cond_t        *cond,
 > +  pthread_mutex_t       *mutex,
 > +  clockid_t              clock_id,
 > +  const struct timespec *abstime
 > +)
 > +{
 > +  if ( abstime == NULL ) {
 > +    return EINVAL;
 > +  }
 > +  if ( clock_id != CLOCK_MONOTONIC && clock_id != CLOCK_REALTIME ) {
 > +    return EINVAL;

I made the MR please review it rtems/rtos/rtems!618 .

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/547#note_126976
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
bugs@rtems.org
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to