summaryrefslogtreecommitdiff
path: root/vendor/github.com/pkg/profile/mutex.go
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2019-11-21 09:17:26 +0000
committerValentin Rothberg <rothberg@redhat.com>2019-11-22 15:00:59 +0100
commit885df0cb1ef942dba6ff37d348a4744a9e018a09 (patch)
treedbe64707a509152f6de836d4db2cc4f97ad144f7 /vendor/github.com/pkg/profile/mutex.go
parentc673ff8cb63c71a39e1a1d561373af42bfea7f24 (diff)
downloadpodman-885df0cb1ef942dba6ff37d348a4744a9e018a09.tar.gz
podman-885df0cb1ef942dba6ff37d348a4744a9e018a09.tar.bz2
podman-885df0cb1ef942dba6ff37d348a4744a9e018a09.zip
build(deps): bump github.com/pkg/profile from 1.3.0 to 1.4.0
Bumps [github.com/pkg/profile](https://github.com/pkg/profile) from 1.3.0 to 1.4.0. - [Release notes](https://github.com/pkg/profile/releases) - [Commits](https://github.com/pkg/profile/compare/v1.3.0...v1.4.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'vendor/github.com/pkg/profile/mutex.go')
-rw-r--r--vendor/github.com/pkg/profile/mutex.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/github.com/pkg/profile/mutex.go b/vendor/github.com/pkg/profile/mutex.go
deleted file mode 100644
index e69c5b44d..000000000
--- a/vendor/github.com/pkg/profile/mutex.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// +build go1.8
-
-package profile
-
-import "runtime"
-
-func enableMutexProfile() {
- runtime.SetMutexProfileFraction(1)
-}
-
-func disableMutexProfile() {
- runtime.SetMutexProfileFraction(0)
-}