summaryrefslogtreecommitdiffstats
path: root/cpukit/score/macros/rtems/score/object.inl
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-02 17:21:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-02 17:21:16 +0000
commit209e68dfbd14d215f5bc78a4211ec61b079defa0 (patch)
tree36957872c10a6cd02a1db7c354e8beca73041a28 /cpukit/score/macros/rtems/score/object.inl
parent2004-11-02 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-209e68dfbd14d215f5bc78a4211ec61b079defa0.tar.bz2
2004-11-02 Joel Sherrill <joel@OARcorp.com>
* posix/src/mqueueunlink.c, posix/src/semunlink.c, score/inline/rtems/score/object.inl, score/macros/rtems/score/object.inl: _Objects_Is_local_id() should be avoided in single CPU configurations but always available in the Objects Handlers API.
Diffstat (limited to '')
-rw-r--r--cpukit/score/macros/rtems/score/object.inl3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/score/macros/rtems/score/object.inl b/cpukit/score/macros/rtems/score/object.inl
index 3bddc856ac..8469e55feb 100644
--- a/cpukit/score/macros/rtems/score/object.inl
+++ b/cpukit/score/macros/rtems/score/object.inl
@@ -93,6 +93,9 @@
#if defined(RTEMS_MULTIPROCESSING)
#define _Objects_Is_local_id( _id ) \
_Objects_Is_local_node( _Objects_Get_node(_id) )
+#else
+#define _Objects_Is_local_id( _id ) \
+ TRUE
#endif
/*PAGE