mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
UserspaceEmulator: Add support for setsid
This commit is contained in:
committed by
Andreas Kling
parent
fcc38422c6
commit
290e7957b7
@@ -395,6 +395,8 @@ u32 Emulator::virt_syscall(u32 function, u32 arg1, u32 arg2, u32 arg3)
|
||||
return virt$sched_setparam(arg1, arg2);
|
||||
case SC_set_thread_name:
|
||||
return virt$set_thread_name(arg1, arg2, arg3);
|
||||
case SC_setsid:
|
||||
return virt$setsid();
|
||||
default:
|
||||
reportln("\n=={}== \033[31;1mUnimplemented syscall: {}\033[0m, {:p}", getpid(), Syscall::to_string((Syscall::Function)function), function);
|
||||
dump_backtrace();
|
||||
@@ -1460,4 +1462,9 @@ int Emulator::virt$set_thread_name(pid_t pid, FlatPtr name_addr, size_t name_len
|
||||
return syscall(SC_set_thread_name, pid, name.characters(), name.length());
|
||||
}
|
||||
|
||||
pid_t Emulator::virt$setsid()
|
||||
{
|
||||
return syscall(SC_setsid);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user