aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-08-10 15:12:00 +0200
committerKim Alvefur <zash@zash.se>2022-08-10 15:12:00 +0200
commit48ee5e3cbd3acaaeae817af0646a60dbdfa79639 (patch)
treef34d40e0b049021c8efeb45ef3c8e0e5e097e808 /teal-src
parentd7b7e4afb5df5006db1b127e5033050d5e62d079 (diff)
downloadprosody-48ee5e3cbd3acaaeae817af0646a60dbdfa79639.tar.gz
prosody-48ee5e3cbd3acaaeae817af0646a60dbdfa79639.zip
util.signal: Fix name conflict in Teal interface declaration
Diffstat (limited to 'teal-src')
-rw-r--r--teal-src/util/signal.d.tl8
1 files changed, 4 insertions, 4 deletions
diff --git a/teal-src/util/signal.d.tl b/teal-src/util/signal.d.tl
index 8610aa7f..290cf08f 100644
--- a/teal-src/util/signal.d.tl
+++ b/teal-src/util/signal.d.tl
@@ -1,5 +1,5 @@
local record lib
- enum signal
+ enum Signal
"SIGABRT"
"SIGALRM"
"SIGBUS"
@@ -33,9 +33,9 @@ local record lib
"SIGXCPU"
"SIGXFSZ"
end
- signal : function (integer | signal, function, boolean) : boolean
- raise : function (integer | signal)
- kill : function (integer, integer | signal)
+ signal : function (integer | Signal, function, boolean) : boolean
+ raise : function (integer | Signal)
+ kill : function (integer, integer | Signal)
-- enum : integer
end
return lib