Gedare Bloom commented on a discussion on testsuites/sptests/sp33/init.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/443#note_120851

 >    status = rtems_task_wake_after( rtems_clock_get_ticks_per_second() );
 >    directive_failed(status, "rtems_task_wake_after");
 >  
 > +  /* Gets the number of tasks that are waiting at the barrier */
 > +  puts( "Getting the number of tasks that are waiting at the barrier" );
 > +  status = rtems_barrier_get_number_waiting( Barrier, &waiting );
 > +  directive_failed(status, "rtems_barrier_get_number_waiting");
 > +  if ( waiting != (CONFIGURE_MAXIMUM_TASKS-1) ) {

You don't need to change it elsewhere. Pretty soon we'll pass through all the 
files with a reformatting run

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