summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-04-17 04:55:44 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-04-17 04:55:44 +0000
commit3c86f885369a68d280404bc4f0a24bd4d920d8cf (patch)
treeab7bd1aaa49dacfaefed6d36e5eccbbba738c6ad /cpukit/score/include/rtems/score/thread.h
parent2007-04-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-3c86f885369a68d280404bc4f0a24bd4d920d8cf.tar.bz2
Use Context_Control_fp* instead of void* for fp_contexts.
Diffstat (limited to 'cpukit/score/include/rtems/score/thread.h')
-rw-r--r--cpukit/score/include/rtems/score/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 46687ad90a..6b87844f0f 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -174,7 +174,7 @@ typedef struct {
Stack_Control Initial_stack;
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
/** This field is the initial FP context area address. */
- void *fp_context;
+ Context_Control_fp *fp_context;
#endif
/** This field is the initial stack area address. */
void *stack;
@@ -336,7 +336,7 @@ struct Thread_Control_struct {
/** This field points to the floating point context for this thread.
* If NULL, the thread is integer only.
*/
- void *fp_context;
+ Context_Control_fp *fp_context;
#endif
/** This field points to the newlib reentrancy structure for this thread. */
struct _reent *libc_reent;