1
0
mirror of https://github.com/restic/restic.git synced 2024-07-06 09:20:53 +02:00
restic/vendor/cloud.google.com/go/profiler/mutex.go

26 lines
809 B
Go
Raw Normal View History

// Copyright 2017 Google Inc. All Rights Reserved.
2017-08-05 20:17:15 +02:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// +build go1.8
2017-08-05 20:17:15 +02:00
package profiler
import "runtime"
2017-08-05 20:17:15 +02:00
func enableMutexProfiling() bool {
// One percent of mutex contention events are profiled.
runtime.SetMutexProfileFraction(100)
return true
2017-08-05 20:17:15 +02:00
}