summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-19 13:39:00 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-21 07:29:39 +0200
commitf05eeb2091803b17f89045a685028e9e403f06eb (patch)
tree0773deca2b81089746cf1a4e7c8725ab0ab89ca8 /testsuites/psxtests
parentscore: Introduce _Thread_queue_Flush_critical() (diff)
downloadrtems-f05eeb2091803b17f89045a685028e9e403f06eb.tar.bz2
score: Simplify _Objects_Initialize_information()
Remove unused supports_global parameter. Convert _Objects_Initialize_information() to a macro to avoid use of RTEMS_MULTIPROCESSING define for each caller.
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/psxobj01/init.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/testsuites/psxtests/psxobj01/init.c b/testsuites/psxtests/psxobj01/init.c
index 5f8730862a..c3b3f49aa0 100644
--- a/testsuites/psxtests/psxobj01/init.c
+++ b/testsuites/psxtests/psxobj01/init.c
@@ -46,12 +46,8 @@ rtems_task Init(
0, /* maximum */
4, /* size */
true, /* is_string */
- 10 /* maximum_name_length */
- #if defined(RTEMS_MULTIPROCESSING)
- ,
- false, /* supports_global */
- NULL /* Objects_Thread_queue_Extract_callout extract */
- #endif
+ 10, /* maximum_name_length */
+ NULL /* Objects_Thread_queue_Extract_callout extract */
);