aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/physio.9
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-04-13 14:49:13 +0000
committerBruce Evans <bde@FreeBSD.org>1997-04-13 14:49:13 +0000
commit2e14815b84df9657a3c6d3c1b0b290317c53591a (patch)
tree353a60e82680d3ce2bc05130b963d029d3d106f1 /share/man/man9/physio.9
parentb18e517615158bedcdbbf3443380b001c4f57f1a (diff)
downloadsrc-2e14815b84df9657a3c6d3c1b0b290317c53591a.tar.gz
src-2e14815b84df9657a3c6d3c1b0b290317c53591a.zip
Fixed #include and/or prototype bugs in synopsis.
Notes
Notes: svn path=/head/; revision=24890
Diffstat (limited to 'share/man/man9/physio.9')
-rw-r--r--share/man/man9/physio.98
1 files changed, 5 insertions, 3 deletions
diff --git a/share/man/man9/physio.9 b/share/man/man9/physio.9
index 0a633792108d..e372b90f4ac0 100644
--- a/share/man/man9/physio.9
+++ b/share/man/man9/physio.9
@@ -41,13 +41,15 @@
.Nm physio
.Nd initiate I/O on raw devices
.Sh SYNOPSIS
+.Fd #include <sys/param.h>
+.Fd #include <sys/buf.h>
.Ft int
-.Fo "physio"
-.Fa "(*strategy)(struct buf *)"
+.Fo physio
+.Fa "void (*strategy)(struct buf *)"
.Fa "struct buf *bp"
.Fa "dev_t dev"
.Fa "int flags"
-.Fa "(*minphys)(struct buf *)"
+.Fa "u_int (*minphys)(struct buf *)"
.Fa "struct uio *uio"
.Fc
.Sh DESCRIPTION