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)
}