<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>I would argue that it be a better idea to make the process browser more robust with regard to invalidations of this kind. At least, the process browser is scanning all Process instances in the image. When I create some stub objects/degenerated processes
 through SimulationStudio, I'm also confused that the process browsers fails to display anything afterward.</p>
<p><br>
</p>
<p>Anyway, thank you for fixing this, Jaromir! :-)</p>
<p><br>
</p>
<p>Best,</p>
<p>Christoph</p>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org><br>
<b>Gesendet:</b> Donnerstag, 9. Juni 2022 10:15:25<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org; packages@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Trunk: Kernel-jar.1473.mcz</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">Marcel Taeumel uploaded a new version of Kernel to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Kernel-jar.1473.mcz">http://source.squeak.org/trunk/Kernel-jar.1473.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Kernel-jar.1473<br>
Author: jar<br>
Time: 31 May 2022, 11:31:14.576719 pm<br>
UUID: 53473e84-779a-8a4c-9bf5-32a53197cd05<br>
Ancestors: Kernel-mt.1472<br>
<br>
Fix a bug causing an endless stream of error windows poping up when debugging e.g.<br>
        [] newProcess<br>
when Process Browser is open with auto-update on.<br>
<br>
Once the suspendedContext is set, the new process is no longer considered terminated and Process Browser will try to place it in its list of processes but encounters a nil error when reading its priority because it has not been set yet.<br>
<br>
=============== Diff against Kernel-mt.1472 ===============<br>
<br>
Item was changed:<br>
  ----- Method: Process class>>forContext:priority: (in category 'instance creation') -----<br>
  forContext: aContext priority: anInteger <br>
+        "Answer an instance of me that has suspended aContext at priority anInteger.
<br>
+        It's important to set the priority before setting the suspendedContext; otherwise<br>
+        an endless stream of error windows will start poping up when debugging e.g.<br>
+                [] newProcess<br>
+        when Process Browser is open with auto-update on."<br>
-        "Answer an instance of me that has suspended aContext at priority <br>
-        anInteger."<br>
  <br>
         | newProcess |<br>
         newProcess := self new.<br>
-        newProcess suspendedContext: aContext asContext.<br>
         newProcess priority: anInteger.<br>
+        newProcess suspendedContext: aContext asContext.<br>
         ^newProcess!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>