diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-01-16 13:13:22 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-01-16 14:10:05 -0800 |
commit | 3dd3275da7b665cf2ca297e4bf566fcc77025af8 (patch) | |
tree | 1a1cc08674185072d8d8807ccaeaf1db111e57d0 /pkg/sentry/fsimpl/proc/BUILD | |
parent | 94be30a18dc7c75dc70716ce1ede74a7fb1352fb (diff) |
Add more files to /proc/[pid]/*
Files not implemented require VFSv2 plumbing into the kernel.
Also, cgroup is not implemented yet.
Updates #1195
PiperOrigin-RevId: 290129176
Diffstat (limited to 'pkg/sentry/fsimpl/proc/BUILD')
-rw-r--r-- | pkg/sentry/fsimpl/proc/BUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/sentry/fsimpl/proc/BUILD b/pkg/sentry/fsimpl/proc/BUILD index 6cd18cec8..e92564b5d 100644 --- a/pkg/sentry/fsimpl/proc/BUILD +++ b/pkg/sentry/fsimpl/proc/BUILD @@ -7,7 +7,7 @@ go_library( name = "proc", srcs = [ "filesystem.go", - "mounts.go", + "subtasks.go", "task.go", "task_files.go", "tasks.go", @@ -29,6 +29,7 @@ go_library( "//pkg/sentry/kernel/time", "//pkg/sentry/limits", "//pkg/sentry/mm", + "//pkg/sentry/safemem", "//pkg/sentry/socket", "//pkg/sentry/socket/unix", "//pkg/sentry/socket/unix/transport", |