mirror of https://github.com/k3s-io/k3s
13 lines
157 B
Go
13 lines
157 B
Go
|
//go:build linux
|
||
|
// +build linux
|
||
|
|
||
|
package proctitle
|
||
|
|
||
|
import (
|
||
|
"github.com/erikdubbelboer/gspt"
|
||
|
)
|
||
|
|
||
|
func SetProcTitle(cmd string) {
|
||
|
gspt.SetProcTitle(cmd)
|
||
|
}
|