summaryrefslogtreecommitdiff
path: root/Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp')
-rw-r--r--Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp b/Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp
index ae4942dc7c..a4c58e862a 100644
--- a/Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp
+++ b/Userland/DevTools/UserspaceEmulator/SharedBufferRegion.cpp
@@ -104,11 +104,6 @@ void SharedBufferRegion::write64(u32 offset, ValueWithShadow<u64> value)
*reinterpret_cast<u64*>(m_shadow_data + offset) = value.shadow();
}
-int SharedBufferRegion::allow_all()
-{
- return syscall(SC_shbuf_allow_all, m_shbuf_id);
-}
-
int SharedBufferRegion::allow_pid(pid_t pid)
{
return syscall(SC_shbuf_allow_pid, m_shbuf_id, pid);