Date: Sat, 1 Mar 2003 17:17:32 -0800 (PST) From: Juli Mallett <jmallett@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 26153 for review Message-ID: <200303020117.h221HWie073937@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=26153 Change 26153 by jmallett@jmallett_dalek on 2003/03/01 17:16:49 Add prototypes for fill/set of register functions. Quiets a few noisy warnings. Affected files ... .. //depot/projects/mips/sys/mips/include/reg.h#4 edit Differences ... ==== //depot/projects/mips/sys/mips/include/reg.h#4 (text+ko) ==== @@ -46,4 +46,16 @@ __register_t this_is_a_lie; }; +#ifdef _KERNEL +/* + * XXX these interfaces are MI, so they should be declared in a MI place. + */ +int fill_regs(struct thread *, struct reg *); +int set_regs(struct thread *, struct reg *); +int fill_fpregs(struct thread *, struct fpreg *); +int set_fpregs(struct thread *, struct fpreg *); +int fill_dbregs(struct thread *, struct dbreg *); +int set_dbregs(struct thread *, struct dbreg *); +#endif + #endif /* !_MACHINE_REG_H_ */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200303020117.h221HWie073937>