Make the regset pointers const pointers for the context restore functions.
This works better with set_mcontext() and is more precise in general.
This commit is contained in:
parent
3893a77138
commit
8ef6f226da
@ -169,9 +169,9 @@ struct _caller_saved_fp {
|
||||
};
|
||||
|
||||
#ifdef _KERNEL
|
||||
void restore_callee_saved(struct _callee_saved *);
|
||||
void restore_callee_saved_fp(struct _callee_saved_fp *);
|
||||
void restore_high_fp(struct _high_fp *);
|
||||
void restore_callee_saved(const struct _callee_saved *);
|
||||
void restore_callee_saved_fp(const struct _callee_saved_fp *);
|
||||
void restore_high_fp(const struct _high_fp *);
|
||||
void save_callee_saved(struct _callee_saved *);
|
||||
void save_callee_saved_fp(struct _callee_saved_fp *);
|
||||
void save_high_fp(struct _high_fp *);
|
||||
|
Loading…
Reference in New Issue
Block a user