summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-17 17:15:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-17 17:15:50 +0000
commit0f2aefde75d243dc95f8fad58d080eb6e0e83f86 (patch)
tree446406a4ebe59bac0fc871dcd3e899c83eb47324 /cpukit/score/src
parent2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-0f2aefde75d243dc95f8fad58d080eb6e0e83f86.tar.bz2
2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>
* score/src/objectget.c: Revert.
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/objectget.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/cpukit/score/src/objectget.c b/cpukit/score/src/objectget.c
index f1f0e3503a..d0414113eb 100644
--- a/cpukit/score/src/objectget.c
+++ b/cpukit/score/src/objectget.c
@@ -59,18 +59,7 @@ Objects_Control *_Objects_Get(
index = id - information->minimum_id + 1;
-#if 0
-#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
-#endif
-
- if ( information->maximum >= index ) {
+ if ( information->maximum >= index ) {
_Thread_Disable_dispatch();
if ( (the_object = information->local_table[ index ]) != NULL ) {
*location = OBJECTS_LOCAL;