diff options
author | marcel <marcel@FreeBSD.org> | 2008-08-06 03:14:18 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2008-08-06 03:14:18 +0000 |
commit | 57f1d2180272b9cf2b9b244dae4b426fc3e57baa (patch) | |
tree | f795ef767eaa386eb9a97ba3f1d169f3b4a11c2e /lib/libthread_db/arch/ia64 | |
parent | b537a8d5fd2845634d522ad924753c19b00f5cab (diff) | |
download | FreeBSD-src-57f1d2180272b9cf2b9b244dae4b426fc3e57baa.zip FreeBSD-src-57f1d2180272b9cf2b9b244dae4b426fc3e57baa.tar.gz |
Cleanup for WARNS 6.
Diffstat (limited to 'lib/libthread_db/arch/ia64')
-rw-r--r-- | lib/libthread_db/arch/ia64/libpthread_md.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libthread_db/arch/ia64/libpthread_md.c b/lib/libthread_db/arch/ia64/libpthread_md.c index 3e85102..f5f12d3 100644 --- a/lib/libthread_db/arch/ia64/libpthread_md.c +++ b/lib/libthread_db/arch/ia64/libpthread_md.c @@ -34,22 +34,22 @@ __FBSDID("$FreeBSD$"); #include "libpthread_db.h" void -pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) +pt_reg_to_ucontext(const struct reg *r __unused, ucontext_t *uc __unused) { } void -pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r) +pt_ucontext_to_reg(const ucontext_t *uc __unused, struct reg *r __unused) { } void -pt_fpreg_to_ucontext(const struct fpreg* r, ucontext_t *uc) +pt_fpreg_to_ucontext(const struct fpreg* r __unused, ucontext_t *uc __unused) { } void -pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r) +pt_ucontext_to_fpreg(const ucontext_t *uc __unused, struct fpreg *r __unused) { } @@ -59,7 +59,7 @@ pt_md_init(void) } int -pt_reg_sstep(struct reg *reg, int step) +pt_reg_sstep(struct reg *reg __unused, int step __unused) { return (0); } |