mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-01 10:29:16 +00:00
fix(kernel/tty): add stub implementation for TIOCSCTTY ioctl
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user