From e46d02214885de178d06c333e181f8a723cd107d Mon Sep 17 00:00:00 2001 From: bde Date: Sat, 27 Dec 2003 10:30:43 +0000 Subject: 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). --- sys/sys/uio.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'sys/sys/uio.h') 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 */ -- cgit v1.1