From 39151f2ad8d18554af1d6787bae0b02345e1d90b Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 13 Jul 2011 15:44:09 -0700 Subject: Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases. --- src/rt/rust_kernel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/rt/rust_kernel.cpp') diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp index 92c45f3af91..6a8114e6f52 100644 --- a/src/rt/rust_kernel.cpp +++ b/src/rt/rust_kernel.cpp @@ -11,7 +11,7 @@ rust_kernel::rust_kernel(rust_srv *srv) : _region(&srv->local_region), _log(srv, NULL), _srv(srv), - _interrupt_kernel_loop(FALSE) + _interrupt_kernel_loop(FALSE) { sched = create_scheduler("main"); } @@ -245,14 +245,14 @@ rust_kernel::signal_kernel_lock() { int rust_kernel::start_task_threads(int num_threads) { rust_task_thread *thread = NULL; - + // -1, because this thread will also be a thread. for(int i = 0; i < num_threads - 1; ++i) { thread = new rust_task_thread(i + 1, this); thread->start(); threads.push(thread); } - + sched->start_main_loop(0); while(threads.pop(&thread)) { -- cgit 1.4.1-3-g733a5