diff options
author | Brendan Coles <bcoles@gmail.com> | 2021-03-21 16:02:50 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-22 07:43:44 +0100 |
commit | 71910983560e29c05d026c31b76ca593b27926fe (patch) | |
tree | d932915daca53714e52896569d0a27d865f53f8d /Userland/DevTools/UserspaceEmulator/Emulator.h | |
parent | d2b7500c65d185d3b45e2290f8547f5c751acccb (diff) | |
download | serenity-71910983560e29c05d026c31b76ca593b27926fe.zip |
UserspaceEmulator: Add support for SC_abort syscall
Diffstat (limited to 'Userland/DevTools/UserspaceEmulator/Emulator.h')
-rw-r--r-- | Userland/DevTools/UserspaceEmulator/Emulator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/Emulator.h b/Userland/DevTools/UserspaceEmulator/Emulator.h index 8edc497835..7f9976d851 100644 --- a/Userland/DevTools/UserspaceEmulator/Emulator.h +++ b/Userland/DevTools/UserspaceEmulator/Emulator.h @@ -163,6 +163,7 @@ private: int virt$connect(int sockfd, FlatPtr address, socklen_t address_size); int virt$shutdown(int sockfd, int how); void virt$sync(); + void virt$abort(); void virt$exit(int); ssize_t virt$getrandom(FlatPtr buffer, size_t buffer_size, unsigned int flags); int virt$chdir(FlatPtr, size_t); |