2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-28 14:39:01 +00:00
restic/vendor/github.com/pkg/profile/mutex.go

14 lines
186 B
Go
Raw Normal View History

2017-07-23 12:24:45 +00:00
// +build go1.8
package profile
import "runtime"
func enableMutexProfile() {
runtime.SetMutexProfileFraction(1)
}
func disableMutexProfile() {
runtime.SetMutexProfileFraction(0)
}