Project-Muteki / pymutekiu

Besta RTOS userland emulator
MIT License
1 stars 0 forks source link

Redesign the syscall interface #2

Closed dogtopus closed 7 months ago

dogtopus commented 7 months ago

Problem

Currently all syscalls are being handled in a single syscall handler, which won't be too scalable considering that there are a total number of ~700 syscalls in Besta RTOS and some may require more than a few lines of code to handle.

We should make it more scalable by allowing routing a syscall to the appropriate handler modules/classes.

Proposed solution

dogtopus commented 7 months ago

Superseded by #3.