summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_futex.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* remove the Linux emulation code, no longer referenced by anythingnaddy2016-03-021-753/+0
* The futex_pool and futex_wp_pool pools never get used in interrupt context.kettenis2015-09-041-4/+4
* Release CPU mutexes on EINVAL.doug2014-08-201-2/+3
* Start to deal with the time_t change's effect on compat/linux:guenther2013-10-251-3/+3
* futex: Prevent multiple futex pool initializations.pirofti2013-04-101-5/+10
* futex: Sprinkle a few debug printfs that helped me in the past.pirofti2013-04-101-1/+8
* futex: Assert that the refcount is larger than 0 when doing futex_put.pirofti2013-04-101-1/+2
* Process futex requeuing even when the thread times out or is signaled.guenther2013-01-151-12/+24
* Use a more descriptive name for the userland cas operation.pirofti2012-11-191-2/+2
* Count should always start from zero.pirofti2012-06-191-4/+2
* Set the appropiate return value on futex wait.pirofti2012-06-191-1/+2
* Avoid eternal sleep.pirofti2012-06-191-3/+3
* Add extra argument validation for the futex syscall.pirofti2012-06-191-6/+31
* - remove outdated comment, we already do an equivalent of linux' access_ok()jasper2012-06-191-3/+1
* Improve debug output and fix some style. No functional change.pirofti2012-06-191-30/+39
* Change the pool_get() flags from WAITOK to NOWAIT.pirofti2012-06-191-4/+8
* compat_linux: Don't hold the lock while pool_get'ing with WAITOK.pirofti2012-06-161-1/+3
* Add futex support for compat/linux.pirofti2011-09-181-0/+690