mirror of
https://gogs.blitter.com/RLabs/xs
synced 2026-06-22 20:40:23 +00:00
13 lines
160 B
Go
Executable file
13 lines
160 B
Go
Executable file
//go:build linux
|
|
// +build linux
|
|
|
|
package xsnet
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func (hc *Conn) kill() {
|
|
syscall.Kill(hc.Pproc, syscall.SIGABRT) //nolint:errcheck
|
|
}
|
|
|