summaryrefslogtreecommitdiff
path: root/arch/i386/kernel/syscall.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-11-26arch: i386: syscall.c: replace function calls with single switchDanny Holman1-21/+9
Replace individual function calls with a single switch-case structure for system calls. The new function, handle_syscall, will construct and call the interrupt without input from the programmer. Signed-off-by: Danny Holman <dholman@gymli.org>
2022-03-22arch: i386: refactor the system call APIDanny Holman1-4/+0
The x86 system call/interrupt handlers should be refactored to be more readable. Signed-off-by: Danny Holman <dholman@gymli.org>
2022-01-21arch: i386: move non-critial files out of bootDanny Holman1-0/+42
Move all files not needed for the bootstrap process out of boot and into the main x86 source directory. Signed-off-by: Danny Holman <dholman@gymli.org>