X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2Fdetail%2FFutex.h;h=630ad6963927f2433ae98a6c9e67daacdf75b11e;hp=000bf1a62dcfad7ebfac2acdf1fc437307600498;hb=e7f26d60480810d6c2b724130e35761d75af33fc;hpb=e229101b0e2fc1d9ccfbcb10be991cb62e19d32d 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 */ }; /**