changing rust loop to 1 thread

This commit is contained in:
Jeff Olson 2012-02-26 12:11:30 -08:00 committed by Brian Anderson
parent b79b5739c9
commit 9831ee3e67
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ fn loop_new() -> uv_loop unsafe {
let ret_recv_chan: comm::chan<uv_loop> =
comm::chan(ret_recv_port);
task::spawn_sched(task::manual_threads(4u)) {||
task::spawn_sched(task::manual_threads(1u)) {||
// our beloved uv_loop_t ptr
let loop_handle = rustrt::
rust_uv_loop_new();