diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2017-02-15 14:12:39 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2017-02-15 14:12:39 +0000 |
commit | 4ac1825ce3bf7e4537513fad1fd571d55d431aa2 (patch) | |
tree | d146f3cdde1aba057a66127871ab9b8e3db88b2a /sys/amd64 | |
parent | 9c6d6488faa5a0c98034068ad18597921589e3c3 (diff) | |
download | src-4ac1825ce3bf7e4537513fad1fd571d55d431aa2.tar.gz src-4ac1825ce3bf7e4537513fad1fd571d55d431aa2.zip |
Fix definition of linux64 ptrace syscall.
MFC after: 2 weeks
Sponsored by: DARPA, AFRL
Notes
Notes:
svn path=/head/; revision=313769
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/linux/syscalls.master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/linux/syscalls.master b/sys/amd64/linux/syscalls.master index 291953bf3e66..405fd78cd0e6 100644 --- a/sys/amd64/linux/syscalls.master +++ b/sys/amd64/linux/syscalls.master @@ -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); } |