summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-01 18:26:02 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-01 18:26:02 +0000
commit47ca0d0a5120be271140156bb5e5b6953a56adb1 (patch)
tree016088a2b3e005a705adb445834c69467584ece2 /c/src/exec/score
parentReversing spurious change.. disk crash? (diff)
downloadrtems-47ca0d0a5120be271140156bb5e5b6953a56adb1.tar.bz2
The fp_context field is needed if software or hardware floating point
is available.
Diffstat (limited to 'c/src/exec/score')
-rw-r--r--c/src/exec/score/include/rtems/score/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/score/include/rtems/score/thread.h b/c/src/exec/score/include/rtems/score/thread.h
index 99b38e2034..4d77d43c19 100644
--- a/c/src/exec/score/include/rtems/score/thread.h
+++ b/c/src/exec/score/include/rtems/score/thread.h
@@ -119,7 +119,7 @@ typedef struct {
Priority_Control initial_priority; /* initial priority */
boolean core_allocated_stack;
Stack_Control Initial_stack; /* stack information */
-#if ( CPU_HARDWARE_FP == TRUE )
+#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
void *fp_context; /* initial FP context area address */
#endif
void *stack; /* initial stack area address */