From 664f6ee52f16ceb26d921812615529c17309bce3 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 24 Mar 2011 19:32:00 -0400 Subject: [PATCH 1/3] Ignore artifacts from in-tree builds --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 4a8b1918ecd93..b1f1752b801ba 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,8 @@ rustc TAGS version.ml version.texi +Makefile +config.mk +rt/ +rustllvm/ +test/ \ No newline at end of file From 6999d1dfb4b17422f91b9537754baf9d1cd76dce Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 24 Mar 2011 22:01:09 -0400 Subject: [PATCH 2/3] Un-XFAIL task-comm-4, 5 & 6 --- Makefile.in | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 129b46a81a08f..d4a6ba1349eac 100644 --- a/Makefile.in +++ b/Makefile.in @@ -695,9 +695,6 @@ TEST_XFAILS_STAGE0 := $(FLOAT_XFAILS) \ task-comm-15.rs \ task-comm-2.rs \ task-comm-3.rs \ - task-comm-4.rs \ - task-comm-5.rs \ - task-comm-6.rs \ task-comm-7.rs \ task-comm-8.rs \ task-comm-9.rs \ From c74a745be67dfdc3c78ee3c7504134d39e8339a3 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 25 Mar 2011 00:02:56 -0400 Subject: [PATCH 3/3] Fix typo in Ref.Task.Comm --- doc/rust.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rust.texi b/doc/rust.texi index 4b92fa94d3ec0..559cb661254c1 100644 --- a/doc/rust.texi +++ b/doc/rust.texi @@ -1499,7 +1499,7 @@ messages. Ports receive messages from channels. A @dfn{channel} is a communication endpoint that can @emph{send} messages. Channels send messages to ports. -Each port is implicitly boxed and mutable; as such a port has has a unique +Each port is implicitly boxed and mutable; as such a port has a unique per-task identity and cannot be replicated or transmitted. If a port value is copied, both copies refer to the @emph{same} port. New ports can be constructed dynamically and stored in data structures.