Changeset ea3fb2e in mainline for arch/ia32/src/interrupt.c
- Timestamp:
- 2005-05-12T18:02:15Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f2ffad4
- Parents:
- c884ef1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/interrupt.c
rc884ef1 rea3fb2e 89 89 { 90 90 91 if (( (CPU->arch).fpu_owner)!=NULL)91 if ((CPU->fpu_owner)!=NULL) 92 92 { 93 fpu_lazy_context_save(&(( (CPU->arch).fpu_owner)->saved_fpu_context));94 ( (CPU->arch).fpu_owner)->fpu_context_engaged=0; /* Enables migration */93 fpu_lazy_context_save(&((CPU->fpu_owner)->saved_fpu_context)); 94 (CPU->fpu_owner)->fpu_context_engaged=0; /* Enables migration */ 95 95 } 96 96 … … 98 98 else {fpu_init();THREAD->fpu_context_exists=1;} 99 99 100 (CPU->arch).fpu_owner=THREAD;100 CPU->fpu_owner=THREAD; 101 101 102 102 reset_TS_flag();
Note:
See TracChangeset
for help on using the changeset viewer.