From 4b7c77bce370d2ff88c9fb9036e5f3a3b1da9cb7 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 26 Apr 2021 11:00:24 +0200 Subject: rtems: Change rtems_task_get_affinity() status In case the processor set is not large enough to contain the processor affinity set of the task return RTEMS_INVALID_SIZE instead of RTEMS_INVALID_NUMBER. This is more in line with other directives since the issue is related to the size of an object. Close #4393. --- cpukit/include/rtems/score/status.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpukit/include/rtems/score/status.h') diff --git a/cpukit/include/rtems/score/status.h b/cpukit/include/rtems/score/status.h index ba3910d40d..236ae52d7b 100644 --- a/cpukit/include/rtems/score/status.h +++ b/cpukit/include/rtems/score/status.h @@ -118,6 +118,8 @@ typedef enum { STATUS_BUILD( STATUS_CLASSIC_INVALID_NUMBER, EINVAL ), STATUS_INVALID_PRIORITY = STATUS_BUILD( STATUS_CLASSIC_INVALID_PRIORITY, EINVAL ), + STATUS_INVALID_SIZE = + STATUS_BUILD( STATUS_CLASSIC_INVALID_SIZE, EINVAL ), STATUS_MAXIMUM_COUNT_EXCEEDED = STATUS_BUILD( STATUS_CLASSIC_UNSATISFIED, EOVERFLOW ), STATUS_MESSAGE_INVALID_SIZE = -- cgit v1.2.3