summaryrefslogtreecommitdiffstats
path: root/include/libtf/list.h
Commit message (Collapse)AuthorAgeFilesLines
* libtf: separate scheduler fibre, change the core apiTimo Teras2010-03-101-1/+32
|
* libtf: initial commitTimo Teras2009-11-241-0/+194
libtf is to be user-space cooperative threading library similar to State Threads (http://state-threads.sourceforge.net/), but with additional support for multiple cores, using better algorithms and taking advantage of new Linux kernel syscalls such as eventfd, signalfd and epoll (edge-triggered mode). Initial implementation has setjmp based user-space context switching and trivial testcase. Works on Linux/x86. TFbuild uses ideas from different build systems, namely Kbuild, but it's inner workings are quite different. All build files are included (using macro trickery) instead of recursive making. Thus the build dependency graph is complete and should yield good make performance. Also parallel stuff should work.