1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 01:51:03 +09:00

UserspaceEmulator: Support ioctl(TIOCSPGRP)

This commit is contained in:
Andreas Kling 2020-08-05 19:41:16 +02:00
parent 3717a00290
commit 9d93e208ac
Notes: sideshowbarker 2024-07-19 04:15:20 +09:00

View file

@ -896,6 +896,9 @@ int Emulator::virt$ioctl(int fd, unsigned request, FlatPtr arg)
mmu().copy_to_vm(arg, &ws, sizeof(winsize));
return 0;
}
if (request == TIOCSPGRP) {
return syscall(SC_ioctl, fd, request, arg);
}
dbg() << "Unsupported ioctl: " << request;
dump_backtrace();
TODO();