ardix/kernel
fef 7e6dbad05f
sched: complete rework of context switching
The old strategy was to only do context switching
from within the PendSV handler.  This worked fine
until now because all syscalls were handled either
atomically or just returned -EAGAIN if the
resource was locked or busy.  However, with the
introduction of I/O wait, we need to be able to
sleep directly from within the kernel by moving
the context switching completely into the kernel.
2021-08-08 20:48:55 +02:00
..
fs sched: complete rework of context switching 2021-08-08 20:48:55 +02:00
CMakeLists.txt kevent: add event system 2021-08-03 22:44:28 +02:00
device.c kevent: refactor callback system 2021-08-04 15:46:51 +02:00
dma.c kent: simplify structure 2021-07-31 15:58:29 +02:00
io.c build: parameterize serial config macros 2021-08-01 16:51:06 +02:00
kent.c kent: simplify structure 2021-07-31 15:58:29 +02:00
kevent.c sched: make sleeping actually work 2021-08-05 18:52:51 +02:00
ringbuf.c
sched.c sched: complete rework of context switching 2021-08-08 20:48:55 +02:00
serial.c mutex: return -EAGAIN if trylock fails 2021-08-03 00:07:39 +02:00
syscall.c sched: complete rework of context switching 2021-08-08 20:48:55 +02:00
userspace.c