From 85b7605b323427c734af15a7f36e5839bb865385 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 1 Nov 2004 13:15:40 +0000 Subject: 2004-11-01 Joel Sherrill * 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). --- cpukit/score/macros/rtems/score/object.inl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cpukit/score/macros/rtems') 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 * -- cgit v1.2.3