summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_futex.c
Commit message (Expand)AuthorAgeFilesLines
* MFC r266924:Dmitry Chagin2014-06-031-31/+40
* MFC r266782:Dmitry Chagin2014-05-311-13/+16
* Fix some typos that were causing probe argument types to show up as unknown.Mark Johnston2013-10-011-1/+1
* Arithmetic on pointers takes into account the size of the type. Properly cast...Dmitry Chagin2013-01-251-2/+2
* - >500 static DTrace probes for the linuxulatorAlexander Leidinger2012-05-051-84/+425
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-2/+2
* Remove now-obsolete comment.John Baldwin2011-03-101-6/+1
* Print out shared flag for debug purpose.Dmitry Chagin2011-03-031-8/+8
* Switch PROCESS_SHARE to AUTO_SHARE (as umtx do). Even for SHARED,Dmitry Chagin2011-03-031-1/+1
* Use umtx_key objects to uniquely identify futexes. Private futexes inJohn Baldwin2011-02-231-17/+32
* Style(9) fix. Do not initialize variables in the declarations.Dmitry Chagin2011-02-141-2/+5
* Sort include files in the alphabetical order.Dmitry Chagin2011-02-131-1/+1
* Remove comment about 'ftlk' LOR.Dmitry Chagin2011-02-131-2/+1
* Stop printing the LOR, as this is expected behavior.Dmitry Chagin2011-02-131-1/+1
* The bitset field of freshly created futex should be initialized explicity.Dmitry Chagin2011-02-131-0/+1
* Rename used_requeue and use it as bitwise field to store more flags.Dmitry Chagin2011-02-121-2/+2
* Yet another unimplemented futex operation, print out about.Dmitry Chagin2011-01-311-0/+7
* Implement a futex BITSET op.Dmitry Chagin2011-01-311-25/+44
* Remove trailing dot from the unimplemented futex messages to makeAlexander Leidinger2010-11-221-5/+5
* Some style(9) fixes.Alexander Leidinger2010-11-151-5/+5
* - print out the PID and program name of the program trying to use anAlexander Leidinger2010-11-151-6/+42
* Simplify timeout check in futex_wait() using itimerfix() and return errorJung-uk Kim2010-10-061-22/+10
* Fix a comparision of an uninitialised pointer.Alexander Leidinger2010-10-061-1/+1
* Remove extraneous semicolons, no functional changes.Martin Blapp2010-01-071-1/+1
* Unlock process lock when return error from getrobustlist call.Dmitry Chagin2009-06-141-1/+3
* Add KTR(9) tracing for futex emulation.Dmitry Chagin2009-05-071-11/+49
* Move extern variable definitions to the header file.Dmitry Chagin2009-05-021-1/+1
* Reimplement futexes.Dmitry Chagin2009-05-011-355/+446
* Remove support for FUTEX_REQUEUE operation.Dmitry Chagin2009-04-191-13/+18
* Sort include files in the alphabetical order.Dmitry Chagin2009-03-161-5/+4
* Ignore FUTEX_FD op, as it is done by linux.Dmitry Chagin2009-03-151-7/+0
* Include linux_futex.h before linux_emul.hDmitry Chagin2009-03-151-1/+1
* In the robust futexes list head, futex_offset shall be signed,Konstantin Belousov2008-11-161-2/+2
* Make robust futexes work on linux32/amd64. Use PTRIN to readKonstantin Belousov2008-10-141-3/+3
* Implement robust futexes. Most of the code is modelled afterRoman Divacky2008-05-131-0/+161
* o Add stub support for some new futex operations,Roman Divacky2008-03-201-2/+24
* Return ENOSYS instead of 0 for the unknown futex operations.Konstantin Belousov2008-03-021-1/+1
* Move futex support code from <arch>/support.s into linux compat directory.Konstantin Belousov2007-05-231-74/+37
* MFP4: Linux futex support for amd64.Jung-uk Kim2007-03-301-87/+129
* MFp4 (110541):Alexander Leidinger2007-02-251-2/+7
* MFp4 (110523, parts which apply cleanly):Alexander Leidinger2007-02-251-70/+73
* Change futex lock from mutex to sx. Make futex_get atomic (protected by theAlexander Leidinger2006-09-091-8/+4
* - don't wake every sleeper just the first one [1]Alexander Leidinger2006-09-091-5/+2
* Correct the number of retries in a futex_wake() call.Alexander Leidinger2006-08-261-2/+6
* ifdef DEBUG a printfSuleiman Souhlal2006-08-191-0/+2
* Fix the DEBUG build:Alexander Leidinger2006-08-171-2/+3
* Add some new files needed for linux 2.6.x compatibility.Alexander Leidinger2006-08-151-0/+500