From 209e68dfbd14d215f5bc78a4211ec61b079defa0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 2 Nov 2004 17:21:16 +0000 Subject: 2004-11-02 Joel Sherrill * 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. --- cpukit/score/macros/rtems/score/object.inl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cpukit/score/macros/rtems/score/object.inl') 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 -- cgit v1.2.3