summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs
diff options
context:
space:
mode:
authorDean Deng <deandeng@google.com>2020-08-04 18:18:01 -0700
committergVisor bot <gvisor-bot@google.com>2020-08-04 18:20:20 -0700
commitb44408b40e3e8762a77ccf5eeb7f2ef567235c43 (patch)
tree3df8313d5d930a48c6bc1f350ce0bbf342f4a3aa /pkg/refs
parent338f96b36c778748ff27f5ae73cc73b222c5a90e (diff)
Automated rollback of changelist 324906582
PiperOrigin-RevId: 324931854
Diffstat (limited to 'pkg/refs')
-rw-r--r--pkg/refs/refcounter.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/pkg/refs/refcounter.go b/pkg/refs/refcounter.go
index 3f39edb66..61790221b 100644
--- a/pkg/refs/refcounter.go
+++ b/pkg/refs/refcounter.go
@@ -215,8 +215,6 @@ type AtomicRefCount struct {
// LeakMode configures the leak checker.
type LeakMode uint32
-// TODO(gvisor.dev/issue/1624): Simplify down to two modes once vfs1 ref
-// counting is gone.
const (
// UninitializedLeakChecking indicates that the leak checker has not yet been initialized.
UninitializedLeakChecking LeakMode = iota
@@ -246,11 +244,6 @@ func SetLeakMode(mode LeakMode) {
atomic.StoreUint32(&leakMode, uint32(mode))
}
-// GetLeakMode returns the current leak mode.
-func GetLeakMode() LeakMode {
- return LeakMode(atomic.LoadUint32(&leakMode))
-}
-
const maxStackFrames = 40
type fileLine struct {