summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2021-11-24 18:39:25 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-24 19:44:57 +0100
commitce3a63253a59122f31317964202572a736b3cd5e (patch)
treeae8c7603ec09d01af9cb5bcf097e57cc299cab38 /Userland/Libraries/LibC
parent700c76ba2377e3e1d9a20e18204556faa409d640 (diff)
downloadserenity-ce3a63253a59122f31317964202572a736b3cd5e.zip
LibC: Remove commented out code from `futex()`
Diffstat (limited to 'Userland/Libraries/LibC')
-rw-r--r--Userland/Libraries/LibC/serenity.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibC/serenity.cpp b/Userland/Libraries/LibC/serenity.cpp
index 628a8f3663..f1e16b9698 100644
--- a/Userland/Libraries/LibC/serenity.cpp
+++ b/Userland/Libraries/LibC/serenity.cpp
@@ -40,8 +40,6 @@ int futex(uint32_t* userspace_address, int futex_op, uint32_t value, const struc
{
int rc;
switch (futex_op & FUTEX_CMD_MASK) {
- //case FUTEX_CMP_REQUEUE:
- // FUTEX_CMP_REQUEUE_PI:
case FUTEX_WAKE_OP: {
// These interpret timeout as a u32 value for val2
Syscall::SC_futex_params params {