summaryrefslogtreecommitdiffhomepage
path: root/pkg/unet
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-02-24 20:05:55 +0000
committergVisor bot <gvisor-bot@google.com>2021-02-24 20:05:55 +0000
commit0328d62d64d68c26d7c62a8ae98799e831e59d07 (patch)
treef2e4a8065e59608616e26c5bc338bd1f3873b7ae /pkg/unet
parent0bca8624f6f1b3c7cbffc35a400d3e009b85e3a3 (diff)
parentba4dfa7172a00f8b104a75a4655fe3de1e4a94c9 (diff)
Merge release-20210208.0-89-gba4dfa717 (automated)
Diffstat (limited to 'pkg/unet')
-rw-r--r--pkg/unet/unet.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/unet/unet.go b/pkg/unet/unet.go
index c976d7230..22dd40f21 100644
--- a/pkg/unet/unet.go
+++ b/pkg/unet/unet.go
@@ -23,7 +23,7 @@ import (
"sync/atomic"
"syscall"
- "gvisor.dev/gvisor/pkg/gate"
+ "gvisor.dev/gvisor/pkg/sync"
)
// backlog is used for the listen request.
@@ -67,7 +67,7 @@ func eventFD() (int, error) {
// Socket is a connected unix domain socket.
type Socket struct {
// gate protects use of fd.
- gate gate.Gate
+ gate sync.Gate
// fd is the bound socket.
//