예제 #1
0
rtems_task Init(
  rtems_task_argument ignored
)
{
  puts( "\n\n*** TEST THREAD QUEUE TEST 01 ***" );

  threadq_first_empty( "FIFO", THREAD_QUEUE_DISCIPLINE_FIFO );
  threadq_first_empty( "Priority", THREAD_QUEUE_DISCIPLINE_PRIORITY );

  puts( "*** END OF TEST THREAD QUEUE TEST 01 ***" );
  rtems_test_exit(0);
}
예제 #2
0
파일: init.c 프로젝트: AlexShiLucky/rtems
rtems_task Init(
  rtems_task_argument ignored
)
{
  TEST_BEGIN();

  threadq_first_empty( "FIFO", THREAD_QUEUE_DISCIPLINE_FIFO );
  threadq_first_empty( "Priority", THREAD_QUEUE_DISCIPLINE_PRIORITY );

  TEST_END();
  rtems_test_exit(0);
}