diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-12-10 21:10:14 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-10 21:10:14 +0000 |
commit | c3b1adebb559bb37402f52771b770e26fe92ed49 (patch) | |
tree | c9aa27ec23ff25bc1db507298289603976d099c2 /pkg/sentry/strace/strace.go | |
parent | 6314afbd4bfd886320eff9043dcd10dca440eed0 (diff) | |
parent | 39386d78bb9636e52d6a0487d5fa7bff6beab64e (diff) |
Merge release-20191129.0-38-g39386d7 (automated)
Diffstat (limited to 'pkg/sentry/strace/strace.go')
-rw-r--r-- | pkg/sentry/strace/strace.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/sentry/strace/strace.go b/pkg/sentry/strace/strace.go index 311389547..629c1f308 100644 --- a/pkg/sentry/strace/strace.go +++ b/pkg/sentry/strace/strace.go @@ -439,6 +439,8 @@ func (i *SyscallInfo) pre(t *kernel.Task, args arch.SyscallArguments, maximumBlo output = append(output, capData(t, args[arg-1].Pointer(), args[arg].Pointer())) case PollFDs: output = append(output, pollFDs(t, args[arg].Pointer(), uint(args[arg+1].Uint()), false)) + case SelectFDSet: + output = append(output, fdSet(t, int(args[0].Int()), args[arg].Pointer())) case Oct: output = append(output, "0o"+strconv.FormatUint(args[arg].Uint64(), 8)) case Hex: |