fix(kernel/tty): add stub implementation for TIOCSCTTY ioctl

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-03-27 16:46:55 +00:00
parent 5ffb0e704d
commit 2f18d390e4
2 changed files with 7 additions and 2 deletions

View File

@ -176,7 +176,11 @@ namespace KernelConsole
debug("returning sid %d", thisProcess->Security.SessionID);
return 0;
}
case TIOCSCTTY:
{
fixme("stub ioctl TIOCSCTTY");
return 0;
}
default:
{
debug("Unknown ioctl %#lx", Request);