Fix type of Signal constants on WASI

This commit is contained in:
Elliott Sales de Andrade
2022-02-05 20:44:26 -05:00
committed by Ron Evans
parent 5d4f795aec
commit 5141638cbf
+6 -6
View File
@@ -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() {}