about summary refs log tree commit diff
path: root/src/libstd/rt/basic.rs
AgeCommit message (Collapse)AuthorLines
2013-10-24Implement a basic event loop built on LittleLockAlex Crichton-0/+256
It's not guaranteed that there will always be an event loop to run, and this implementation will serve as an incredibly basic one which does not provide any I/O, but allows the scheduler to still run. cc #9128