A futex (short for "fast userspace mutex") is a Linux construct that can be used to implement basic locking, or as a building block for higher-level locking abstractions such as semaphores and POSIX mutexes or condition variables.
A futex consists of a kernelspace wait queue that is attached to an aligned integer in userspace. Multiple processes or threads operate on the integer entirely in user space (using atomic operations to avoid interfering with one another), and only resort to relatively expensive system calls to request operations on the wait queue (for example to wake up waiting processes, or to put the current process on the wait queue). A properly programmed futex-based lock will not use system calls except when the lock is contended; since most operations do not require arbitration between processes, this will not happen in most cases.
Contents |
Futexes were created by Hubertus Franke (IBM Thomas J. Watson Research Center), Matthew Kirkwood, Ingo Molnár (Red Hat) and Rusty Russell (IBM Linux Technology Center). They first appeared in the development kernel version 2.5.7; the semantics stabilized as of version 2.5.40, and they are present since the 2.6.x stable kernel series.
In 2002, there were discussions to make futexes accessible via the file system, i.e. create a special node in /dev or /proc. However, Linus Torvalds was heavily opposed to this idea and rejected any related patches.[1]
The basic operations of futexes are based on only two central operations WAKE and UP, though futexes depending on the exact Linux version have a few more operations for more specialized cases [2].