diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-11-07 06:07:31 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-11-07 11:06:48 +0100 |
| commit | 0281aea335f7b620aa396d75a7f2c5d14f2d0c70 (patch) | |
| tree | 93bee1f25c11d24257c6b940d28b8a44e80a1241 /sys/linux/prctl.txt | |
| parent | d797d2018f9550530c469ce03b5ae36cfa1ebd23 (diff) | |
sys/linux: fix up some int64 syscall args
See the discussion on #1493.
These args are actually intptr's.
Diffstat (limited to 'sys/linux/prctl.txt')
| -rw-r--r-- | sys/linux/prctl.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/linux/prctl.txt b/sys/linux/prctl.txt index 449464d12..0c62da866 100644 --- a/sys/linux/prctl.txt +++ b/sys/linux/prctl.txt @@ -134,9 +134,9 @@ prctl$PR_SET_SPECULATION_CTRL(option const[PR_SET_SPECULATION_CTRL], arg2 const[ pr_spec_mode = PR_SPEC_ENABLE, PR_SPEC_DISABLE, PR_SPEC_FORCE_DISABLE -arch_prctl$ARCH_GET_FS(code const[ARCH_GET_FS], arg ptr[out, int64]) -arch_prctl$ARCH_GET_GS(code const[ARCH_GET_GS], arg ptr[out, int64]) -arch_prctl$ARCH_SET_GS(code const[ARCH_SET_GS], arg int64) +arch_prctl$ARCH_GET_FS(code const[ARCH_GET_FS], arg ptr[out, intptr]) +arch_prctl$ARCH_GET_GS(code const[ARCH_GET_GS], arg ptr[out, intptr]) +arch_prctl$ARCH_SET_GS(code const[ARCH_SET_GS], arg ptr[out, intptr]) arch_prctl$ARCH_GET_CPUID(code const[ARCH_GET_CPUID]) arch_prctl$ARCH_SET_CPUID(code const[ARCH_SET_CPUID], arg boolptr) arch_prctl$ARCH_MAP_VDSO_X32(code const[ARCH_MAP_VDSO_X32], arg intptr) |
