Hi,

Process>>evaluate:ifNotTerminated: use the correct namespace.

Gwen

>From 9569ff050d993fe1c0f47121177d4516948999d4 Mon Sep 17 00:00:00 2001
From: Gwenael Casaccio <[email protected]>
Date: Mon, 24 Mar 2014 16:00:49 +0100
Subject: [PATCH 4/4] Fix Process>>evaluate:ifNotTerminated: use the correct
 namespace

---
 ChangeLog         | 6 ++++++
 kernel/Process.st | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 285a65a..5178b01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2014-03-24  Gwenael Casaccio  <[email protected]>
 
+	* kernel/Process.st: Fix the implementation of Process>>evaluate:ifNotTerminated: use
+
+	the correct namespace.
+
+2014-03-24  Gwenael Casaccio  <[email protected]>
+
 	* kernel/Process.st: Fix the implementation of Process>>priority: it checks in the old
 	priority queue if the process was ready and resume it if so.
 
diff --git a/kernel/Process.st b/kernel/Process.st
index ef0e7d4..d5931fb 100644
--- a/kernel/Process.st
+++ b/kernel/Process.st
@@ -329,7 +329,7 @@ can suspend themselves and resume themselves however they wish.'>
 	| terminated |
 	terminated := false.
 	
-	[aBlock on: ProcessBeingTerminated
+	[aBlock on: SystemExceptions.ProcessBeingTerminated
 	    do: 
 		[:sig | 
 		terminated := true.
-- 
1.8.3.2

_______________________________________________
help-smalltalk mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to