From 254dc82daf8cbd6922376fcbb81c31e21cbf4d16 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 24 Jun 2016 11:22:03 +0200 Subject: score: Change Priority_Control to 64-bit A 32-bit Priority_Control limits the uptime to 49 days with a 1ms clock tick in case the EDF scheduler is used. Increase it to 64-bit to enable proper operation of the EDF scheduler, Close 2173. --- cpukit/rtems/include/rtems/rtems/tasks.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/rtems/include/rtems/rtems/tasks.h') diff --git a/cpukit/rtems/include/rtems/rtems/tasks.h b/cpukit/rtems/include/rtems/rtems/tasks.h index 84ea806f81..6273228f85 100644 --- a/cpukit/rtems/include/rtems/rtems/tasks.h +++ b/cpukit/rtems/include/rtems/rtems/tasks.h @@ -75,7 +75,7 @@ extern "C" { /** * Define the type for an RTEMS API task priority. */ -typedef Priority_Control rtems_task_priority; +typedef uint32_t rtems_task_priority; /** * This is the constant used with the rtems_task_set_priority -- cgit v1.2.3