mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:17:45 +00:00
ELFLoader should fail with an error message for unresolved symbols.
This commit is contained in:
parent
ec1d16b307
commit
16f318408d
14 changed files with 80 additions and 24 deletions
|
@ -9,12 +9,12 @@ uid_t getuid()
|
|||
return Syscall::invoke(Syscall::PosixGetuid);
|
||||
}
|
||||
|
||||
uid_t getgid()
|
||||
gid_t getgid()
|
||||
{
|
||||
return Syscall::invoke(Syscall::PosixGetgid);
|
||||
}
|
||||
|
||||
uid_t getpid()
|
||||
pid_t getpid()
|
||||
{
|
||||
return Syscall::invoke(Syscall::PosixGetpid);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue