summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2001-09-30 19:43:18 +0000
committerjake <jake@FreeBSD.org>2001-09-30 19:43:18 +0000
commite0d2d2b6d0d77e0fdfc517e280ec07b2d6a4a22e (patch)
treeb730eca2eed05c244a73e5a1d8143a543f0e4f5b
parent8f0a1f0a279da156377cf56257332370624b7749 (diff)
downloadFreeBSD-src-e0d2d2b6d0d77e0fdfc517e280ec07b2d6a4a22e.zip
FreeBSD-src-e0d2d2b6d0d77e0fdfc517e280ec07b2d6a4a22e.tar.gz
Return EIO for procfs_*_dbregs.
-rw-r--r--sys/sparc64/sparc64/procfs_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sparc64/sparc64/procfs_machdep.c b/sys/sparc64/sparc64/procfs_machdep.c
index f813f19..3208816 100644
--- a/sys/sparc64/sparc64/procfs_machdep.c
+++ b/sys/sparc64/sparc64/procfs_machdep.c
@@ -111,14 +111,14 @@ int
procfs_read_dbregs(struct thread *td, struct dbreg *dbregs)
{
- PROCFS_ACTION(fill_dbregs(td, dbregs));
+ return (EIO);
}
int
procfs_write_dbregs(struct thread *td, struct dbreg *dbregs)
{
- PROCFS_ACTION(set_dbregs(td, dbregs));
+ return (EIO);
}
/*
OpenPOWER on IntegriCloud