summaryrefslogtreecommitdiffstats
path: root/cpukit/score/macros/rtems/score/object.inl
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/macros/rtems/score/object.inl')
-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
*