summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-11-15 15:38:52 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-11-18 14:56:43 +0100
commit3a7628e86a78a2334513d44472d5983175e62944 (patch)
treea4c6cc5d4ffde2175652eff92c994bf8d0b1346b
parentlibtests/malloctest: Fix heap extend test case (diff)
downloadrtems-3a7628e86a78a2334513d44472d5983175e62944.tar.bz2
score: Objects_Information::extract visibility
This filed is only used if RTEMS_MULTIPROCESSING is defined.
-rw-r--r--cpukit/score/include/rtems/score/objectimpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/objectimpl.h b/cpukit/score/include/rtems/score/objectimpl.h
index c6c870fcd9..afd29ea750 100644
--- a/cpukit/score/include/rtems/score/objectimpl.h
+++ b/cpukit/score/include/rtems/score/objectimpl.h
@@ -156,9 +156,9 @@ typedef struct {
#endif
/** This is the maximum length of names. */
uint16_t name_length;
- /** This is this object class' method called when extracting a thread. */
- Objects_Thread_queue_Extract_callout extract;
#if defined(RTEMS_MULTIPROCESSING)
+ /** This is this object class' method called when extracting a thread. */
+ Objects_Thread_queue_Extract_callout extract;
/** This is this object class' pointer to the global name table */
Chain_Control *global_table;
#endif