aboutsummaryrefslogtreecommitdiff
path: root/src/rt/rust_proxy.h
Commit message (Collapse)AuthorAgeFilesLines
* rt: Consistently refer to structs as structs and classes as classes. Clang ↵Patrick Walton2011-05-081-1/+1
| | | | complains about this.
* Lots of design changes around proxies and message passing. Made it so that ↵Michael Bebenita2010-09-071-20/+33
| | | | domains can only talk to other domains via handles, and with the help of the rust_kernel.
* Rename rust_proxy_delegate to maybe_proxy, flesh out logic in it. Add ↵Michael Bebenita2010-07-281-11/+36
| | | | strong-ref distinction on rust_proxy.
* Add modeline / file-local emacs var blocks.Michael Bebenita2010-07-281-0/+11
|
* Added a message passing system based on lock free queues for inter-thread ↵Michael Bebenita2010-07-191-0/+31
communication. Channels now buffer on the sending side, and no longer require blocking when sending. Lots of other refactoring and bug fixes.