mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +00:00
Fix type of Signal constants on WASI
This commit is contained in:
committed by
Ron Evans
parent
5d4f795aec
commit
5141638cbf
@@ -13,12 +13,12 @@ import (
|
|||||||
type Signal int
|
type Signal int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
SIGCHLD = 16
|
SIGCHLD Signal = 16
|
||||||
SIGINT = 2
|
SIGINT Signal = 2
|
||||||
SIGKILL = 9
|
SIGKILL Signal = 9
|
||||||
SIGTRAP = 5
|
SIGTRAP Signal = 5
|
||||||
SIGQUIT = 3
|
SIGQUIT Signal = 3
|
||||||
SIGTERM = 15
|
SIGTERM Signal = 15
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s Signal) Signal() {}
|
func (s Signal) Signal() {}
|
||||||
|
|||||||
Reference in New Issue
Block a user