Futex
|
|
This article includes a list of references, but its sources remain unclear because it has insufficient inline citations. (December 2009) |
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 |
History [edit]
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 Linux development kernel version 2.5.7; the semantics stabilized as of version 2.5.40, and they have featured since the 2.6.x stable kernel series.
In 2002 discussions took place on a proposal to make futexes accessible via the file system by creating a special node in /dev or /proc. However, Linus Torvalds strongly opposed this idea and rejected any related patches.[1]
Operations [edit]
The basic operations of futexes are based on only two central operations WAIT and WAKE, though futexes depending on the exact Linux version have a few more operations for more specialized cases.[2]
- WAIT (addr, val)
- Checks if the value stored at the address addr is val, and if it is puts the current thread to sleep.
- WAKE (addr, val)
- Wakes up val number of threads waiting on the address addr.
See also [edit]
- Synchronization
- Fetch-and-add
- Compare and swap
- Benaphores: the same principle was used on BeOS as early as 1996.
References [edit]
- - futex() system call
- - futex semantics and usage
- Hubertus Franke, Rusty Russell, Matthew Kirkwood, Fuss, futexes and furwocks: Fast Userlevel Locking in Linux, Ottawa Linux Symposium 2002.
- Futex manpages
- Ingo Molnar, "Robust Futexes", Linux Kernel Documentation
- "Priority Inheritance Futexes", Linux Kernel Documentation
Sources [edit]
- ^ Torvalds, Linus. "Futex Asynchronous Interface".
- ^ Futexes Are Tricky, Red Hat (v 1.6, 2011).
| This Linux-related article is a stub. You can help Wikipedia by expanding it. |