summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sptask_err03/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-06-16 07:28:58 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-06-18 07:09:34 +0200
commit46c23871813618e7a16050068041b3d33551cd0d (patch)
treec26f000d0857387806330031de7d9e91fe1d4aee /testsuites/sptests/sptask_err03/init.c
parenti386/pc: Initialise the printk serial port on first use (diff)
downloadrtems-46c23871813618e7a16050068041b3d33551cd0d.tar.bz2
rtems: Remove RTEMS_MP_NOT_CONFIGURED error
Some objects can be created with a local or global scope in a multiprocessing network. In non-multiprocessing configurations setting the scope to local or global had no effect since such a system can be viewed as a multiprocessing network with just one node. One and all nodes is the same in such a network. However, if multiprocessing was configured, creation of a global object in a single node network resulted in an RTEMS_MP_NOT_CONFIGURED error. Remove this error condition for symmetry to the non-multiprocessing setup. This is in line with the task affinity behaviour in SMP systems. Update #4005.
Diffstat (limited to 'testsuites/sptests/sptask_err03/init.c')
-rw-r--r--testsuites/sptests/sptask_err03/init.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/testsuites/sptests/sptask_err03/init.c b/testsuites/sptests/sptask_err03/init.c
index 2ac54b9037..bda2cd4a1f 100644
--- a/testsuites/sptests/sptask_err03/init.c
+++ b/testsuites/sptests/sptask_err03/init.c
@@ -228,27 +228,5 @@ rtems_task Init(
);
puts( "TA1 - rtems_task_create - 11 - RTEMS_TOO_MANY" );
- /*
- * The check for an object being global is only made if
- * multiprocessing is enabled.
- */
-
-#if defined(RTEMS_MULTIPROCESSING)
- status = rtems_task_create(
- task_name,
- 4,
- RTEMS_MINIMUM_STACK_SIZE,
- RTEMS_DEFAULT_MODES,
- RTEMS_GLOBAL,
- &Junk_id
- );
- fatal_directive_status(
- status,
- RTEMS_MP_NOT_CONFIGURED,
- "rtems_task_create of global task in a single cpu system"
- );
-#endif
- puts( "TA1 - rtems_task_create - RTEMS_MP_NOT_CONFIGURED" );
-
TEST_END();
}