Kernel+UE+LibC: Remove unused dbgputch syscall

Everything uses the dbgputstr syscall anyway, so there is no need to
keep supporting it.
This commit is contained in:
Ben Wiederhake 2021-11-23 01:07:30 +01:00 committed by Andreas Kling
commit 33079c8ab9
Notes: sideshowbarker 2024-07-18 00:42:37 +09:00
9 changed files with 0 additions and 31 deletions

View file

@ -18,13 +18,6 @@ ErrorOr<FlatPtr> Process::sys$dump_backtrace()
return 0;
}
ErrorOr<FlatPtr> Process::sys$dbgputch(u8 ch)
{
VERIFY_NO_PROCESS_BIG_LOCK(this);
dbgputch(ch);
return 0;
}
ErrorOr<FlatPtr> Process::sys$dbgputstr(Userspace<const char*> characters, size_t size)
{
VERIFY_NO_PROCESS_BIG_LOCK(this);