From 30055ec1753b5f8cfc2940dba5d4188475fdbf7f Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 14 Sep 2022 23:34:58 +0300 Subject: add putch syscall for easier userspace debugging + Note that it is NOT intended for end user usage, just for debugging. --- include/apos/syscalls.h | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'include/apos/syscalls.h') diff --git a/include/apos/syscalls.h b/include/apos/syscalls.h index baa1139..84d9e07 100644 --- a/include/apos/syscalls.h +++ b/include/apos/syscalls.h @@ -12,10 +12,25 @@ /** enum for now, possibly macros in the future once I get an approximate idea of * which syscalls are necessary etc. */ enum { - /** @name Misc. */ + /** + * @name Misc. + * Implementation in \ref dispatch.c instead of a separate file, as I + * consider them 'internal' and not intended for users. + */ /** @{ */ /** Noop, mainly for testing syscall subsystem and sanity checking. */ SYS_NOOP, + + /** + * Put a single character to the serial lines. + * Do not rely on this actually working, as the serial drivers are only + * included on debugging kernels. + * + * \todo Should serial drivers be always included and debugging mode + * turned into whether \ref info is turned on or off or something? + */ + SYS_PUTCH, + /** @} */ /* @name Memory management. */ -- cgit v1.3