Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace tabs following #define with spaces. | Jason Evans | 2017-01-21 | 1 | -1/+1 |
| | | | | This resolves #564. | ||||
* | Remove extraneous parens around return arguments. | Jason Evans | 2017-01-21 | 1 | -4/+4 |
| | | | | This resolves #540. | ||||
* | Update brace style. | Jason Evans | 2017-01-21 | 1 | -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 Evans | 2017-01-13 | 1 | -4/+0 |
| | | | | This resolves #535. | ||||
* | Add os_unfair_lock support. | Jason Evans | 2016-11-03 | 1 | -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.c | Mike Hommey | 2014-05-27 | 1 | -0/+4 |
| | |||||
* | Fix a malloc_mutex dependency in mtx. | Jason Evans | 2013-12-12 | 1 | -1/+1 |
| | |||||
* | Add mq (message queue) to test infrastructure. | Jason Evans | 2013-12-12 | 1 | -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. |