svn commit: r265177 - user/dchagin/lemul/sys/amd64/linux

Dmitry Chagin dchagin at FreeBSD.org
Thu May 1 13:24:41 UTC 2014


Author: dchagin
Date: Thu May  1 13:24:40 2014
New Revision: 265177
URL: http://svnweb.freebsd.org/changeset/base/265177

Log:
  Change pointer types used in the linux_recvfrom syscall to properly-sized types.

Modified:
  user/dchagin/lemul/sys/amd64/linux/syscalls.master

Modified: user/dchagin/lemul/sys/amd64/linux/syscalls.master
==============================================================================
--- user/dchagin/lemul/sys/amd64/linux/syscalls.master	Thu May  1 13:22:18 2014	(r265176)
+++ user/dchagin/lemul/sys/amd64/linux/syscalls.master	Thu May  1 13:24:40 2014	(r265177)
@@ -125,7 +125,7 @@
 				    l_int len, l_int flags, l_uintptr_t to, \
 				    l_int tolen); }
 45	AUE_RECVFROM	STD	{ int linux_recvfrom(l_int s, l_uintptr_t buf, \
-				    l_int len, l_int flags, l_uintptr_t from, \
+				    l_size_t len, l_int flags, l_uintptr_t from, \
 				    l_uintptr_t fromlen); }
 46	AUE_SENDMSG	STD	{ int linux_sendmsg(l_int s, l_uintptr_t msg, \
 				    l_int flags); }


More information about the svn-src-user mailing list