summaryrefslogtreecommitdiffstats
path: root/test/sleep.c
Commit message (Collapse)AuthorAgeFilesLines
* libtf: major redesign startedHEADmasterTimo Teräs2010-07-021-3/+3
| | | | | | | | | | the idea is to make libtf completely multi-threaded. meaning each fiber can be running concurrently in separate thread. quite a bit of framework is added for this and some atomic helpers are already introduced. however, io polling is busy polling now (will be soon in own thread) and timeouts are still more or less broken. oh, and the multithreading core is not there yet. basically we are currently mostly broken ;)
* mem: add mmap allocatorTimo Teras2010-03-101-1/+1
| | | | use it for heaps and fiber stacks.
* libtf: fix stack frame creation and valgrind issuesTimo Teras2010-03-101-1/+1
| | | | | debugging looks now better. there was also some valgrind issues that needed attention.
* libtf: separate scheduler fibre, change the core apiTimo Teras2010-03-101-9/+8
|
* libtf: implement timeoutsTimo Teras2009-11-241-0/+31
internally put sleepers to d-ary heap based priority queue. the heap value is compared with overflow.