summaryrefslogtreecommitdiff
path: root/libraries/base/cbits/DarwinUtils.c
Commit message (Collapse)AuthorAgeFilesLines
* Build fix for iOS; fixes #7759Ian Lynagh2013-04-211-1/+2
| | | | | | | | | Patch from Stephen Blackheath. The issue here is that the #defines EVFILT_READ and EVFILT_WRITE have the values -1 and -2. The original code translates that to filterRead = Filter -1 which is wrong Haskell and fails to compile. The modified code produces the correct code filterRead = Filter (-1)
* Add timer initialization for darwin.Paolo Capriotti2012-04-171-10/+10
|
* Define monotonic time function for Darwin.Paolo Capriotti2012-04-171-0/+21