diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-05-07 18:44:45 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-07 18:44:45 +0000 |
commit | c7d003a05e7cf8f4f94ce640c4d0bc00fb0294f9 (patch) | |
tree | 20b7a3cc210ab42fdeee9df5ae0c53531d4e191e /pkg/sentry/syscalls/linux/sigset.go | |
parent | 37296b79ae2ccc43e1decc4d756b548e23a122e1 (diff) | |
parent | 26c60d7d5d31fdf3ad380a0f09b4f33afae3d9d3 (diff) |
Merge release-20200422.0-47-g26c60d7 (automated)
Diffstat (limited to 'pkg/sentry/syscalls/linux/sigset.go')
-rw-r--r-- | pkg/sentry/syscalls/linux/sigset.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkg/sentry/syscalls/linux/sigset.go b/pkg/sentry/syscalls/linux/sigset.go index 2ddb2b146..434559b80 100644 --- a/pkg/sentry/syscalls/linux/sigset.go +++ b/pkg/sentry/syscalls/linux/sigset.go @@ -21,9 +21,13 @@ import ( "gvisor.dev/gvisor/pkg/usermem" ) -// copyInSigSet copies in a sigset_t, checks its size, and ensures that KILL and +// CopyInSigSet copies in a sigset_t, checks its size, and ensures that KILL and // STOP are clear. -func copyInSigSet(t *kernel.Task, sigSetAddr usermem.Addr, size uint) (linux.SignalSet, error) { +// +// TODO(gvisor.dev/issue/1624): This is only exported because +// syscalls/vfs2/signal.go depends on it. Once vfs1 is deleted and the vfs2 +// syscalls are moved into this package, then they can be unexported. +func CopyInSigSet(t *kernel.Task, sigSetAddr usermem.Addr, size uint) (linux.SignalSet, error) { if size != linux.SignalSetSize { return 0, syserror.EINVAL } |