The fp_context field is needed if software or hardware floating point

is available.
This commit is contained in:
Joel Sherrill
2000-08-01 18:26:02 +00:00
parent 4f8473e268
commit 47ca0d0a51
2 changed files with 2 additions and 2 deletions

View File

@@ -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 */

View File

@@ -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 */