mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
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:
parent
f53bc19b8a
commit
33079c8ab9
9 changed files with 0 additions and 31 deletions
|
@ -152,12 +152,6 @@ static inline void internal_dbgputch(char ch)
|
|||
IO::out8(IO::BOCHS_DEBUG_PORT, ch);
|
||||
}
|
||||
|
||||
extern "C" void dbgputch(char ch)
|
||||
{
|
||||
SpinlockLocker lock(s_log_lock);
|
||||
internal_dbgputch(ch);
|
||||
}
|
||||
|
||||
extern "C" void dbgputstr(const char* characters, size_t length)
|
||||
{
|
||||
if (!characters)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue