/* * Copyright 2016 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include 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 }; /** * Futex is an atomic 32 bit unsigned integer that provides access to the * futex() syscall on that value. It is templated in such a way that it * can interact properly with DeterministicSchedule testing. * * If you don't know how to use futex(), you probably shouldn't be using * this class. Even if you do know how, you should have a good reason * (and benchmarks to back you up). */ template