summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-12 13:23:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-05-12 13:23:12 +0000
commit0a101d572d7abb5a18103143552d52c83599a6a4 (patch)
tree7f1629c301a552ad0dbd72e36bc2269db67f09ed /cpukit/score/include/rtems/score/thread.h
parent2011-05-12 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-0a101d572d7abb5a18103143552d52c83599a6a4.tar.bz2
2011-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1788/cpukit * score/include/rtems/score/percpu.h, score/include/rtems/score/thread.h: Make time of last context switch part of per cpu information since each core has a different context switch to track.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/thread.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 0453912a46..785d8a149e 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -492,16 +492,6 @@ SCORE_EXTERN Thread_Control *_Thread_Allocated_fp;
*/
SCORE_EXTERN struct _reent **_Thread_libc_reent;
-#ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
-
- /**
- * This contains the time since boot when the last context switch occurred.
- * By placing it in the BSS, it will automatically be zeroed out at
- * system initialization and does not need to be known outside this
- * file.
- */
- SCORE_EXTERN Timestamp_Control _Thread_Time_of_last_context_switch;
-#endif
/**
* This routine performs the initialization necessary for this handler.