mirror of
https://gitee.com/johng/gf
synced 2026-07-07 06:15:15 +08:00
16 lines
229 B
Go
16 lines
229 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/os/gproc"
|
|
)
|
|
|
|
func main () {
|
|
pid := 28536
|
|
m := gproc.NewManager()
|
|
m.AddProcess(pid)
|
|
m.KillAll()
|
|
m.WaitAll()
|
|
fmt.Printf("%d was killed\n", pid)
|
|
}
|