mirror of
https://github.com/restic/restic.git
synced 2025-12-26 09:39:45 -05:00
11 lines
277 B
Go
11 lines
277 B
Go
// +build go1.7
|
|
|
|
package profile
|
|
|
|
import "runtime/trace"
|
|
|
|
// Trace profile controls if execution tracing will be enabled. It disables any previous profiling settings.
|
|
func TraceProfile(p *profile) { p.mode = traceMode }
|
|
|
|
var startTrace = trace.Start
|
|
var stopTrace = trace.Stop
|