summaryrefslogtreecommitdiffstats
path: root/sys/sys/uio.h
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2003-12-27 10:30:43 +0000
committerbde <bde@FreeBSD.org>2003-12-27 10:30:43 +0000
commite46d02214885de178d06c333e181f8a723cd107d (patch)
tree0d7518361e82ecf494b44daa1f63c804e1f270c5 /sys/sys/uio.h
parent01d9611db4589abea5ddd9f7f9cf4e7628737f3b (diff)
downloadFreeBSD-src-e46d02214885de178d06c333e181f8a723cd107d.zip
FreeBSD-src-e46d02214885de178d06c333e181f8a723cd107d.tar.gz
Fixed style bugs in rev.1.12 (unsorting of prototypes by adding new ones
at the end). Fixed some older style bugs (missing parameter names in all the kernel prototypes except the ones added in rev.1.12).
Diffstat (limited to 'sys/sys/uio.h')
-rw-r--r--sys/sys/uio.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/sys/uio.h b/sys/sys/uio.h
index 82c78ae..99d0ec2 100644
--- a/sys/sys/uio.h
+++ b/sys/sys/uio.h
@@ -85,14 +85,15 @@ struct uio {
struct vm_object;
-void uio_yield(void);
-int uiomove(void *, int, struct uio *);
-int uiomove_frombuf(void *buf, int buflen, struct uio *uio);
-int uiomoveco(void *, int, struct uio *, struct vm_object *, int);
int copyinfrom(const void * __restrict src, void * __restrict dst,
size_t len, int seg);
int copyinstrfrom(const void * __restrict src, void * __restrict dst,
size_t len, size_t * __restrict copied, int seg);
+void uio_yield(void);
+int uiomove(void *cp, int n, struct uio *uio);
+int uiomove_frombuf(void *buf, int buflen, struct uio *uio);
+int uiomoveco(void *cp, int n, struct uio *uio, struct vm_object *obj,
+ int disposable);
#else /* !_KERNEL */
OpenPOWER on IntegriCloud