diff options
author | Jamie Liu <jamieliu@google.com> | 2021-06-23 13:15:44 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-23 13:18:17 -0700 |
commit | dfa4b3b90861a61653d0bef8f144bb4e82d21d78 (patch) | |
tree | 75ecd3872d82fd5f2980b6878e3e13c4d90e1b62 /pkg/memutil/BUILD | |
parent | 6b23d2a08e71ce7d93b1d52e545f792f549225dc (diff) |
Move flipcall.packetWindowMmap to memutil.
PiperOrigin-RevId: 381100861
Diffstat (limited to 'pkg/memutil/BUILD')
-rw-r--r-- | pkg/memutil/BUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/memutil/BUILD b/pkg/memutil/BUILD index 9d07d98b4..bea595286 100644 --- a/pkg/memutil/BUILD +++ b/pkg/memutil/BUILD @@ -4,7 +4,11 @@ package(licenses = ["notice"]) go_library( name = "memutil", - srcs = ["memutil_unsafe.go"], + srcs = [ + "memfd_linux_unsafe.go", + "memutil.go", + "mmap.go", + ], visibility = ["//visibility:public"], deps = ["@org_golang_x_sys//unix:go_default_library"], ) |