vendor changes to pkg/profile (#1671)

This commit is contained in:
karthic rao
2016-05-18 21:52:06 +05:30
committed by Harshavardhana
parent 4bc923e63b
commit 2da34e4668
2 changed files with 4 additions and 7 deletions

View File

@@ -104,7 +104,8 @@ func (p *profile) Stop() {
// Start starts a new profiling session.
// The caller should call the Stop method on the value returned
// to cleanly stop profiling.
// to cleanly stop profiling. Start can only be called once
// per program execution.
func Start(options ...func(*profile)) interface {
Stop()
} {
@@ -191,9 +192,5 @@ func Start(options ...func(*profile)) interface {
}()
}
prof.closers = append(prof.closers, func() {
atomic.SwapUint32(&started, 0)
})
return &prof
}