ardix/kernel/fs
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
..
CMakeLists.txt fs: implement file abstraction 2021-08-01 04:22:09 +02:00
file.c mutex: return -EAGAIN if trylock fails 2021-08-03 00:07:39 +02:00
read.c sched: complete rework of context switching 2021-08-08 20:48:55 +02:00
write.c sched: complete rework of context switching 2021-08-08 20:48:55 +02:00