summaryrefslogtreecommitdiff
path: root/i386/i386/fpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'i386/i386/fpu.c')
-rw-r--r--i386/i386/fpu.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/i386/i386/fpu.c b/i386/i386/fpu.c
index b47bd339..e57227d5 100644
--- a/i386/i386/fpu.c
+++ b/i386/i386/fpu.c
@@ -380,9 +380,8 @@ twd_fxsr_to_i387 (struct i386_xfp_save *fxsave)
* concurrent fpu_set_state or fpu_get_state.
*/
kern_return_t
-fpu_set_state(thread, state)
- const thread_t thread;
- struct i386_float_state *state;
+fpu_set_state(const thread_t thread,
+ struct i386_float_state *state)
{
pcb_t pcb = thread->pcb;
struct i386_fpsave_state *ifps;
@@ -491,9 +490,8 @@ ASSERT_IPL(SPL0);
* concurrent fpu_set_state or fpu_get_state.
*/
kern_return_t
-fpu_get_state(thread, state)
- const thread_t thread;
- struct i386_float_state *state;
+fpu_get_state(const thread_t thread,
+ struct i386_float_state *state)
{
pcb_t pcb = thread->pcb;
struct i386_fpsave_state *ifps;