diff options
author | Etienne Perot <eperot@google.com> | 2021-03-15 20:12:40 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-15 20:16:48 -0700 |
commit | f7e841c2cede357c4cbd6117605e3f3d54f1961c (patch) | |
tree | 7f39615fbece5dd3428c02d65606a3778f29627d | |
parent | f4b74218202c8f318c603c57aa35895554194d98 (diff) |
Turn sys_thread constants into variables.
PiperOrigin-RevId: 363092268
-rw-r--r-- | pkg/sentry/syscalls/linux/sys_thread.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pkg/sentry/syscalls/linux/sys_thread.go b/pkg/sentry/syscalls/linux/sys_thread.go index 44738c40c..b5f920949 100644 --- a/pkg/sentry/syscalls/linux/sys_thread.go +++ b/pkg/sentry/syscalls/linux/sys_thread.go @@ -31,6 +31,11 @@ import ( ) const ( + // exitSignalMask is the signal mask to be sent at exit. Same as CSIGNAL in linux. + exitSignalMask = 0xff +) + +var ( // ExecMaxTotalSize is the maximum length of all argv and envv entries. // // N.B. The behavior here is different than Linux. Linux provides a limit on @@ -42,9 +47,6 @@ const ( // ExecMaxElemSize is the maximum length of a single argv or envv entry. ExecMaxElemSize = 32 * usermem.PageSize - - // exitSignalMask is the signal mask to be sent at exit. Same as CSIGNAL in linux. - exitSignalMask = 0xff ) // Getppid implements linux syscall getppid(2). |