Software /
code /
prosody
Annotate
teal-src/util/signal.d.tl @ 12630:781772c8b6d9
mod_mam: Store archives with sub-second precision timestamps
Changes sub-second part of example timestamp to .5 in order to avoid
floating point issues.
Some clients use timestamps when ordering messages which can lead to
messages having the same timestamp ending up in the wrong order.
It would be better to preserve the order messages are sent in, which is
the order they were stored in.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 14 Aug 2022 17:28:31 +0200 |
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 |