summaryrefslogtreecommitdiffstats
path: root/cpukit/score/macros/rtems/score/object.inl
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-01 13:15:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-01 13:15:40 +0000
commit85b7605b323427c734af15a7f36e5839bb865385 (patch)
treeb415fb7d82afe5993d382ae103e9d7612620637b /cpukit/score/macros/rtems/score/object.inl
parent2004-11-01 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-85b7605b323427c734af15a7f36e5839bb865385.tar.bz2
2004-11-01 Joel Sherrill <joel@oarcorp.com>
* score/include/rtems/score/object.h, score/inline/rtems/score/object.inl, score/macros/rtems/score/object.inl: Add first cut of optional 16 bit object Id as space reduction for small systems (TinyRTEMS).
Diffstat (limited to '')
-rw-r--r--cpukit/score/macros/rtems/score/object.inl4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpukit/score/macros/rtems/score/object.inl b/cpukit/score/macros/rtems/score/object.inl
index 79702927f9..3bddc856ac 100644
--- a/cpukit/score/macros/rtems/score/object.inl
+++ b/cpukit/score/macros/rtems/score/object.inl
@@ -79,8 +79,10 @@
*
*/
+#if defined(RTEMS_MULTIPROCESSING)
#define _Objects_Is_local_node( _node ) \
( (_node) == _Objects_Local_node )
+#endif
/*PAGE
*
@@ -88,8 +90,10 @@
*
*/
+#if defined(RTEMS_MULTIPROCESSING)
#define _Objects_Is_local_id( _id ) \
_Objects_Is_local_node( _Objects_Get_node(_id) )
+#endif
/*PAGE
*