svn commit: r316360 - stable/11/sys/amd64/linux

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Apr 1 16:35:44 UTC 2017


Author: trasz
Date: Sat Apr  1 16:35:42 2017
New Revision: 316360
URL: https://svnweb.freebsd.org/changeset/base/316360

Log:
  MFC r313769:
  
  Fix definition of linux64 ptrace syscall.
  
  Sponsored by:	DARPA, AFRL

Modified:
  stable/11/sys/amd64/linux/syscalls.master
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/amd64/linux/syscalls.master
==============================================================================
--- stable/11/sys/amd64/linux/syscalls.master	Sat Apr  1 16:22:07 2017	(r316359)
+++ stable/11/sys/amd64/linux/syscalls.master	Sat Apr  1 16:35:42 2017	(r316360)
@@ -219,7 +219,7 @@
 99	AUE_NULL	STD	{ int linux_sysinfo(struct l_sysinfo *info); }
 100	AUE_NULL	STD	{ int linux_times(struct l_times_argv *buf); }
 101	AUE_PTRACE	STD	{ int linux_ptrace(l_long req, l_long pid, \
-				    l_long addr, l_long data); }
+				    l_ulong addr, l_ulong data); }
 102	AUE_GETUID	STD	{ int linux_getuid(void); }
 103	AUE_NULL	STD	{ int linux_syslog(l_int type, char *buf, \
 				    l_int len); }


More information about the svn-src-all mailing list