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/posix/src/killinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/posix/src/killinfo.c') diff --git a/cpukit/posix/src/killinfo.c b/cpukit/posix/src/killinfo.c index 33754af682..b7f0354a0b 100644 --- a/cpukit/posix/src/killinfo.c +++ b/cpukit/posix/src/killinfo.c @@ -190,7 +190,7 @@ int _POSIX_signals_Send( * + rtems internal threads do not receive signals. */ interested = NULL; - interested_priority = PRIORITY_MAXIMUM + 1; + interested_priority = UINT64_MAX; for (the_api = OBJECTS_CLASSIC_API; the_api <= OBJECTS_APIS_LAST; the_api++) { -- cgit v1.2.3