summaryrefslogtreecommitdiffstats
path: root/test/src/mtx.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace tabs following #define with spaces.Jason Evans2017-01-211-1/+1
| | | | This resolves #564.
* Remove extraneous parens around return arguments.Jason Evans2017-01-211-4/+4
| | | | This resolves #540.
* Update brace style.Jason Evans2017-01-211-10/+9
| | | | | | | Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537.
* Remove leading blank lines from function bodies.Jason Evans2017-01-131-4/+0
| | | | This resolves #535.
* Add os_unfair_lock support.Jason Evans2016-11-031-0/+7
| | | | | OS X 10.12 deprecated OSSpinLock; os_unfair_lock is the recommended replacement.
* Define _CRT_SPINCOUNT in test/src/mtx.c like in src/mutex.cMike Hommey2014-05-271-0/+4
|
* Fix a malloc_mutex dependency in mtx.Jason Evans2013-12-121-1/+1
|
* Add mq (message queue) to test infrastructure.Jason Evans2013-12-121-0/+62
Add mtx (mutex) to test infrastructure, in order to avoid bootstrapping complications that would result from directly using malloc_mutex. Rename test infrastructure's thread abstraction from je_thread to thd. Fix some header ordering issues.