Rev 1248 | Rev 1414 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1248 | Rev 1264 | ||
|---|---|---|---|
| Line 25... | Line 25... | ||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** |
29 | /** |
| - | 30 | * @file futex.c |
|
| 30 | * Kernel backend for futexes. |
31 | * @brief Kernel backend for futexes. |
| - | 32 | * |
|
| 31 | * Deallocation of orphaned kernel-side futex structures is not currently implemented. |
33 | * @todo Deallocation of orphaned kernel-side futex structures is not currently implemented. |
| 32 | */ |
34 | */ |
| 33 | 35 | ||
| 34 | #include <synch/futex.h> |
36 | #include <synch/futex.h> |
| 35 | #include <synch/rwlock.h> |
37 | #include <synch/rwlock.h> |
| 36 | #include <synch/spinlock.h> |
38 | #include <synch/spinlock.h> |