mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 02:57:46 +00:00
9cb263479c
* all: wasip2 support Co-authored-by: Randy Reddig <randy.reddig@fastly.com>
36 lines
1.0 KiB
Go
36 lines
1.0 KiB
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build aix || darwin || dragonfly || freebsd || (js && wasm) || linux || netbsd || openbsd || solaris || wasip1 || wasip2 || windows
|
|
|
|
package os
|
|
|
|
import (
|
|
"runtime"
|
|
"syscall"
|
|
)
|
|
|
|
// The only signal values guaranteed to be present in the os package on all
|
|
// systems are os.Interrupt (send the process an interrupt) and os.Kill (force
|
|
// the process to exit). On Windows, sending os.Interrupt to a process with
|
|
// os.Process.Signal is not implemented; it will return an error instead of
|
|
// sending a signal.
|
|
var (
|
|
Interrupt Signal = syscall.SIGINT
|
|
Kill Signal = syscall.SIGKILL
|
|
)
|
|
|
|
// Keep compatible with golang and always succeed and return new proc with pid on Linux.
|
|
func findProcess(pid int) (*Process, error) {
|
|
return &Process{Pid: pid}, nil
|
|
}
|
|
|
|
func (p *Process) release() error {
|
|
// NOOP for unix.
|
|
p.Pid = -1
|
|
// no need for a finalizer anymore
|
|
runtime.SetFinalizer(p, nil)
|
|
return nil
|
|
}
|