mirror of https://github.com/k3s-io/k3s
15 lines
182 B
Go
15 lines
182 B
Go
|
//go:build linux
|
||
|
// +build linux
|
||
|
|
||
|
package proctitle
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/erikdubbelboer/gspt"
|
||
|
)
|
||
|
|
||
|
func SetProcTitle(cmd string) {
|
||
|
gspt.SetProcTitle(os.Args[0] + " agent")
|
||
|
}
|