From 1ea895d9a458c9e4a91993924fcd39ce7f1dcabe Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 8 May 2009 15:21:41 -0700 Subject: move things out of sys into os and runtime R=r OCL=28569 CL=28573 --- test/ken/chan1.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'test/ken/chan1.go') diff --git a/test/ken/chan1.go b/test/ken/chan1.go index c6d7825b7..5a59de1c0 100644 --- a/test/ken/chan1.go +++ b/test/ken/chan1.go @@ -6,6 +6,8 @@ package main +import "runtime" + const N = 1000; // sent messages const M = 10; // receiving goroutines const W = 2; // channel buffering @@ -48,9 +50,9 @@ main() c := make(chan int, W); for m:=0; m