summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-29 11:53:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-29 13:21:31 +0200
commit520938b052a3623d3ea97572bfab8e45d19e517b (patch)
tree36bf6d514a84ef9f93a4153be6c8bfd7a0e4585d
parentscore: Fix _Objects_MP_Is_remote() (diff)
downloadrtems-520938b052a3623d3ea97572bfab8e45d19e517b.tar.bz2
score: The API mutexes are not global
-rw-r--r--cpukit/score/src/apimutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/apimutex.c b/cpukit/score/src/apimutex.c
index bb86e4746b..1ac505220a 100644
--- a/cpukit/score/src/apimutex.c
+++ b/cpukit/score/src/apimutex.c
@@ -39,7 +39,7 @@ void _API_Mutex_Initialization(
0 /* maximum length of an object name */
#if defined(RTEMS_MULTIPROCESSING)
,
- true, /* true if this is a global object class */
+ false, /* true if this is a global object class */
NULL /* Proxy extraction support callout */
#endif
);