svn commit: r205319 - head/sys/compat/freebsd32
Konstantin Belousov
kib at FreeBSD.org
Fri Mar 19 10:49:03 UTC 2010
Author: kib
Date: Fri Mar 19 10:49:03 2010
New Revision: 205319
URL: http://svn.freebsd.org/changeset/base/205319
Log:
Make freebsd32_copyiniov() available outside of freebsd32_misc.
MFC after: 2 weeks
Modified:
head/sys/compat/freebsd32/freebsd32_misc.c
head/sys/compat/freebsd32/freebsd32_util.h
Modified: head/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_misc.c Fri Mar 19 10:46:54 2010 (r205318)
+++ head/sys/compat/freebsd32/freebsd32_misc.c Fri Mar 19 10:49:03 2010 (r205319)
@@ -873,7 +873,7 @@ freebsd32_pwritev(struct thread *td, str
return (error);
}
-static int
+int
freebsd32_copyiniov(struct iovec32 *iovp32, u_int iovcnt, struct iovec **iovp,
int error)
{
Modified: head/sys/compat/freebsd32/freebsd32_util.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_util.h Fri Mar 19 10:46:54 2010 (r205318)
+++ head/sys/compat/freebsd32/freebsd32_util.h Fri Mar 19 10:49:03 2010 (r205319)
@@ -84,5 +84,8 @@ int syscall32_deregister(int *offset,
int syscall32_module_handler(struct module *mod, int what, void *arg);
register_t *freebsd32_copyout_strings(struct image_params *imgp);
+struct iovec32;
+int freebsd32_copyiniov(struct iovec32 *iovp, u_int iovcnt,
+ struct iovec **iov, int error);
#endif /* !_COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ */
More information about the svn-src-head
mailing list