summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2011-10-17 15:54:41 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2011-10-17 15:54:41 +0000
commitd63f1c924358d9f0e9536223cd06cb920eaf2758 (patch)
treedd4a78e87bd2333bc72de7932af54abefc74700c /cpukit
parent2011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-d63f1c924358d9f0e9536223cd06cb920eaf2758.tar.bz2
2011-10-17 Sebastian Huber <sebastian.huber@embedded-brains.de>
PR 1938/cpukit * score/include/rtems/score/thread.h: Removed obsolete suspend_count field from Thread_Control.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/score/include/rtems/score/thread.h2
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index d70339e89b..79ecb41865 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+2011-10-17 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ PR 1938/cpukit
+ * score/include/rtems/score/thread.h: Removed obsolete suspend_count
+ field from Thread_Control.
+
2011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* libfs/src/rfs/rtems-rfs-file-system.c (rtems_rfs_fs_open):
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index d60a2b7233..b43d56a131 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -390,8 +390,6 @@ struct Thread_Control_struct {
Chain_Control lock_mutex;
#endif
/*================= end of common block =================*/
- /** This field is the number of nested suspend calls. */
- uint32_t suspend_count;
#if defined(RTEMS_MULTIPROCESSING)
/** This field is true if the thread is offered globally */
bool is_global;