1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:07:44 +00:00

Kernel: Add kernel-level timer queue (heavily based on @juliusf's work)

PR #591 defines the rationale for kernel-level timers. They're most
immediately useful for TCP retransmission, but will most likely see use
in many other areas as well.
This commit is contained in:
Conrad Pankoff 2019-12-27 11:58:28 +11:00 committed by Andreas Kling
parent 13cf7e76b9
commit 115b315375
4 changed files with 124 additions and 0 deletions

View file

@ -80,6 +80,7 @@ OBJS = \
SharedBuffer.o \
StdLib.o \
Syscall.o \
TimerQueue.o \
TTY/MasterPTY.o \
TTY/PTYMultiplexer.o \
TTY/SlavePTY.o \