Files
2024-11-14 10:45:44 +01:00

14 lines
257 B
Go

package gst
import "runtime/pprof"
var padprobesProfile *pprof.Profile
func init() {
padprobes := "go-gst-active-pad-probes"
padprobesProfile = pprof.Lookup(padprobes)
if padprobesProfile == nil {
padprobesProfile = pprof.NewProfile(padprobes)
}
}