diff options
author | Rahat Mahmood <rahat@google.com> | 2020-09-18 10:06:55 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-18 10:09:14 -0700 |
commit | ef7d9a6fcdaaa77808c6607141e1a55c0ff92a7f (patch) | |
tree | 3d59cebced2c46341745830aed95da23b6e79b2b /pkg | |
parent | 313e1988c4609c74ada99c1a5e9ecde56c313125 (diff) |
Fix definition of SchedParam.
Linux defines this struct as:
struct sched_param {
int priority;
}
... in include/linux/sched.h.
PiperOrigin-RevId: 332473133
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/sentry/syscalls/linux/sys_sched.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/syscalls/linux/sys_sched.go b/pkg/sentry/syscalls/linux/sys_sched.go index cd6f4dd94..bfcf44b6f 100644 --- a/pkg/sentry/syscalls/linux/sys_sched.go +++ b/pkg/sentry/syscalls/linux/sys_sched.go @@ -30,7 +30,7 @@ const ( // // +marshal type SchedParam struct { - schedPriority int64 + schedPriority int32 } // SchedGetparam implements linux syscall sched_getparam(2). |