Software /
code /
prosody
Annotate
teal-src/util/signal.d.tl @ 12828:f33887f925e1
net.server_epoll: Remove delay on last main loop iteration when quitting
Main difference is that timers are not checked unconditionally before
each poll, only when running out of previous poll results (hidden by
util.poll). This removes a final poll at shutdown that usually delays
the 'not quitting' condition check by one second.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 06 Jan 2023 04:38:39 +0100 |
parent | 12627:b8ce0f61855b |
rev | line source |
---|---|
11579 | 1 local record lib |
12627
b8ce0f61855b
util.signal: Fix name conflict in Teal interface declaration
Kim Alvefur <zash@zash.se>
parents:
11579
diff
changeset
|
2 enum Signal |
11579 | 3 "SIGABRT" |
4 "SIGALRM" | |
5 "SIGBUS" | |
6 "SIGCHLD" | |
7 "SIGCLD" | |
8 "SIGCONT" | |
9 "SIGFPE" | |
10 "SIGHUP" | |
11 "SIGILL" | |
12 "SIGINT" | |
13 "SIGIO" | |
14 "SIGIOT" | |
15 "SIGKILL" | |
16 "SIGPIPE" | |
17 "SIGPOLL" | |
18 "SIGPROF" | |
19 "SIGQUIT" | |
20 "SIGSEGV" | |
21 "SIGSTKFLT" | |
22 "SIGSTOP" | |
23 "SIGSYS" | |
24 "SIGTERM" | |
25 "SIGTRAP" | |
26 "SIGTTIN" | |
27 "SIGTTOU" | |
28 "SIGURG" | |
29 "SIGUSR1" | |
30 "SIGUSR2" | |
31 "SIGVTALRM" | |
32 "SIGWINCH" | |
33 "SIGXCPU" | |
34 "SIGXFSZ" | |
35 end | |
12627
b8ce0f61855b
util.signal: Fix name conflict in Teal interface declaration
Kim Alvefur <zash@zash.se>
parents:
11579
diff
changeset
|
36 signal : function (integer | Signal, function, boolean) : boolean |
b8ce0f61855b
util.signal: Fix name conflict in Teal interface declaration
Kim Alvefur <zash@zash.se>
parents:
11579
diff
changeset
|
37 raise : function (integer | Signal) |
b8ce0f61855b
util.signal: Fix name conflict in Teal interface declaration
Kim Alvefur <zash@zash.se>
parents:
11579
diff
changeset
|
38 kill : function (integer, integer | Signal) |
11579 | 39 -- enum : integer |
40 end | |
41 return lib |