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:
Marcel Moolenaar 2003-05-31 21:02:18 +00:00
parent 3893a77138
commit 8ef6f226da

View File

@ -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 *);