summaryrefslogtreecommitdiff
path: root/cpukit/score/src/objectget.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectget.c')
-rw-r--r--cpukit/score/src/objectget.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/cpukit/score/src/objectget.c b/cpukit/score/src/objectget.c
index 1f51c20a4a..5216422759 100644
--- a/cpukit/score/src/objectget.c
+++ b/cpukit/score/src/objectget.c
@@ -57,14 +57,7 @@ Objects_Control *_Objects_Get(
Objects_Control *the_object;
uint32_t index;
-#if defined(RTEMS_MULTIPROCESSING)
index = id - information->minimum_id + 1;
-#else
- /* index = _Objects_Get_index( id ); */
- index = id & 0x0000ffff;
- /* This should work but doesn't always :( */
- /* index = (uint16_t) id; */
-#endif
if ( information->maximum >= index ) {
_Thread_Disable_dispatch();