/* * Author : Sebastien Levieux * Date : 13/12/2024 */ #include "test_support.h" #include "tmacros.h" #include /* system configuration */ #define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER #define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER #define CONFIGURE_MAXIMUM_PROCESSORS 4 #define CONFIGURE_MAXIMUM_TASKS (1 + CONFIGURE_MAXIMUM_PROCESSORS) #define CONFIGURE_MAXIMUM_SEMAPHORES 2 #define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION #define CONFIGURE_RTEMS_INIT_TASKS_TABLE /* Global variables */ #define SIZE 10 int Number_Sequence[SIZE]; static rtems_id Number_Sequence_semaphore; /* synchronisation semaphore */ #include