mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
fix(kernel/tty): add stub implementation for TIOCSCTTY ioctl
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
parent
5ffb0e704d
commit
2f18d390e4
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user