summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/threadimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-07 09:27:59 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-07 09:27:59 +0200
commit29594b4dbc011c0a768395acaf8afc59c512c164 (patch)
treeac3e205dc8441ea449951af350ac827a3dc015e0 /cpukit/score/include/rtems/score/threadimpl.h
parentbsp/xilinx-zynq: Avoid duplicate declaration (diff)
downloadrtems-29594b4dbc011c0a768395acaf8afc59c512c164.tar.bz2
score: Remove superfluous SMP debug support
This information turned out to be useless in the last couple of months.
Diffstat (limited to 'cpukit/score/include/rtems/score/threadimpl.h')
-rw-r--r--cpukit/score/include/rtems/score/threadimpl.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpukit/score/include/rtems/score/threadimpl.h b/cpukit/score/include/rtems/score/threadimpl.h
index 965b2d190c..2e335396bb 100644
--- a/cpukit/score/include/rtems/score/threadimpl.h
+++ b/cpukit/score/include/rtems/score/threadimpl.h
@@ -1658,19 +1658,6 @@ RTEMS_INLINE_ROUTINE void _Thread_Remove_timer_and_unblock(
#endif
}
-RTEMS_INLINE_ROUTINE void _Thread_Debug_set_real_processor(
- Thread_Control *the_thread,
- Per_CPU_Control *cpu
-)
-{
-#if defined(RTEMS_SMP) && defined(RTEMS_DEBUG)
- the_thread->Scheduler.debug_real_cpu = cpu;
-#else
- (void) the_thread;
- (void) cpu;
-#endif
-}
-
/** @}*/
#ifdef __cplusplus