f36feb2ed4
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
21 lines
389 B
Go
21 lines
389 B
Go
package cgroups
|
|
|
|
import "path/filepath"
|
|
|
|
func NewPerfEvent(root string) *PerfEventController {
|
|
return &PerfEventController{
|
|
root: filepath.Join(root, string(PerfEvent)),
|
|
}
|
|
}
|
|
|
|
type PerfEventController struct {
|
|
root string
|
|
}
|
|
|
|
func (p *PerfEventController) Name() Name {
|
|
return PerfEvent
|
|
}
|
|
|
|
func (p *PerfEventController) Path(path string) string {
|
|
return filepath.Join(p.root, path)
|
|
}
|