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. --- testsuites/sptests/spscheduler01/init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testsuites/sptests/spscheduler01/init.c') diff --git a/testsuites/sptests/spscheduler01/init.c b/testsuites/sptests/spscheduler01/init.c index 5ed17057d3..94ecfe4ef5 100644 --- a/testsuites/sptests/spscheduler01/init.c +++ b/testsuites/sptests/spscheduler01/init.c @@ -49,6 +49,7 @@ static void assert_eno(rtems_status_code sc, int eno) rtems_test_assert(eno == ESRCH); break; case RTEMS_INVALID_NUMBER: + case RTEMS_INVALID_SIZE: rtems_test_assert(eno == EINVAL); break; default: @@ -139,7 +140,7 @@ static void test_task_get_set_affinity(void) rtems_test_assert(sc == RTEMS_INVALID_ADDRESS); sc = task_get_affinity(RTEMS_SELF, 0, &cpuset); - rtems_test_assert(sc == RTEMS_INVALID_NUMBER); + rtems_test_assert(sc == RTEMS_INVALID_SIZE); sc = task_set_affinity(RTEMS_SELF, 0, &cpuset); rtems_test_assert(sc == RTEMS_INVALID_NUMBER); -- cgit v1.2.3