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

 >   *  11.4.4 Waiting on a Condition, P1003.1c/Draft 10, p. 105
 >   */
 >  
 > -int pthread_cond_wait(
 > -  pthread_cond_t     *cond,
 > -  pthread_mutex_t    *mutex
 > -)
 > +int pthread_cond_wait( pthread_cond_t *cond, pthread_mutex_t *mutex )
 >  {
 > -  return _POSIX_Condition_variables_Wait_support(
 > -    cond,
 > -    mutex,
 > -    NULL
 > -  );
 > +  return _POSIX_Condition_variables_Wait_support( cond, mutex, NULL, NULL );

Done.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/547#note_126400
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