From e7f26d60480810d6c2b724130e35761d75af33fc Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Tue, 9 Jan 2018 22:39:16 -0800 Subject: [PATCH] Tweak FutexResult comments Summary: [Folly] Tweak `FutexResult` comments. Reviewed By: nbronson Differential Revision: D6673979 fbshipit-source-id: 1777311cd93d5a83432c4ebb48a8432a1c504ca9 --- folly/detail/Futex.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/folly/detail/Futex.h b/folly/detail/Futex.h index 000bf1a6..630ad696 100644 --- a/folly/detail/Futex.h +++ b/folly/detail/Futex.h @@ -29,10 +29,10 @@ namespace folly { namespace detail { enum class FutexResult { - VALUE_CHANGED, /* Futex value didn't match expected */ - AWOKEN, /* futex wait matched with a futex wake */ - INTERRUPTED, /* Spurious wake-up or signal caused futex wait failure */ - TIMEDOUT, + VALUE_CHANGED, /* futex value didn't match expected */ + AWOKEN, /* wakeup by matching futex wake, or spurious wakeup */ + INTERRUPTED, /* wakeup by interrupting signal */ + TIMEDOUT, /* wakeup by expiring deadline */ }; /** -- 2.34.1