Context: default value for timer is now 30 seconds.

master
Karchnu 2020-12-14 16:08:26 +01:00
parent 21334a4d0a
commit 93b9bcbaa2
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
class IPC::Context
property base_timer : Int32 = LibIPC::INFTIM
property timer : Int32 = LibIPC::INFTIM
# TODO: FIXME: base timer default is 30 seconds, INFTIM was causing trouble.
property base_timer : Int32 = 30_000 # LibIPC::INFTIM
property timer : Int32 = 30_000 # LibIPC::INFTIM
getter context : LibIPC::Ctx
# On message reception, the message is contained into the event structure.