aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/ipc.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update `ipc-channel` to pick up the improved error reporting.Patrick Walton2015-11-231-2/+5
| | | | Intended to help diagnose intermittent failures.
* compositing: Split Servo up into multiple sandboxed processes.Patrick Walton2015-11-191-13/+96
| | | | | Multiprocess mode is enabled with the `-M` switch, and sandboxing is enabled with the `-S` switch.
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-2/+1
| | | | This merges import blocks that were reported by tidy as unmerged.
* Fix reported test-tidy errorsBrandon Fairchild2015-09-011-1/+1
| | | | | This fixes lines that were reported to have missing space after a comma.
* Fix existing syntactics nits.Josh Matthews2015-08-161-3/+3
|
* compositing: Use an `OptionalIpcSender` for communication between thePatrick Walton2015-07-311-0/+13
| | | | layout and paint tasks.
* util: Add a multiprocess command-line option and implementPatrick Walton2015-07-311-0/+81
`OptionalIpcSender<T>`. `OptionalIpcSender<T>`dynamically switches between in-process and out-of-process communication depending on whether multiprocess mode is enabled. The multiprocess command-line switch doesn't actually turn on multiprocess mode yet, but it does control the behavior of `OptionalIpcSender<T>`.