From f99d6cab43f787f8887a488b21ba3cd9f8ab9de4 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 11 Jan 2013 17:59:35 -0800 Subject: [PATCH] Long lines --- src/libcore/private.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/libcore/private.rs b/src/libcore/private.rs index fea2bc4e9b6..a88a1196935 100644 --- a/src/libcore/private.rs +++ b/src/libcore/private.rs @@ -53,9 +53,12 @@ extern mod rusti { type raw_thread = libc::c_void; /** -Start a new thread outside of the current runtime context and wait for it to terminate. -The executing thread has no access to a task pointer and will be using a normal large stack. +Start a new thread outside of the current runtime context and wait +for it to terminate. + +The executing thread has no access to a task pointer and will be using +a normal large stack. */ pub unsafe fn run_in_bare_thread(f: ~fn()) { let (port, chan) = pipes::stream();