mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-08-17 01:04:15 +00:00
fix(kernel/tty): add stub implementation for TIOCSCTTY ioctl
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@@ -36,7 +36,8 @@
|
||||
"kernel/driver",
|
||||
"kernel/drivers",
|
||||
"kernel/elf",
|
||||
"kernel/scheduler"
|
||||
"kernel/scheduler",
|
||||
"kernel/tty"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@@ -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