<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    On 7/4/2022 5:38 PM, Juan Vuletich via Cuis-dev wrote:
    <blockquote cite="mid:62C34FC7.1040503@zoho.com" type="cite">
      <meta content="text/html; charset=windows-1252"
        http-equiv="Content-Type">
      On 7/4/2022 5:01 PM, Juan Vuletich via Cuis-dev wrote:
      <blockquote cite="mid:62C34713.3070302@zoho.com" type="cite">
        <meta content="text/html; charset=windows-1252"
          http-equiv="Content-Type">
        On 7/4/2022 4:47 PM, Jaromir Matas via Cuis-dev wrote:
        <blockquote
cite="mid:BYAPR03MB4072CD35FB14C61C4238B3D0EEBE9@BYAPR03MB4072.namprd03.prod.outlook.com"
          type="cite">
          <meta http-equiv="Content-Type" content="text/html;
            charset=windows-1252">
          <meta name="Generator" content="Microsoft Word 15 (filtered
            medium)">
          <style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Calibri Light";
        panose-1:2 15 3 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";
        color:black;}
p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing
        {mso-style-priority:1;
        margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Courier New";
        color:black;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style>
          <div class="WordSection1">
            <p class="MsoNormal">Hi Juan,</p>
            <p class="MsoNormal">I’m attaching a changeset that would
              evaluate the following examples identically, i.e.
              regardless of whether the code runs in the UI or a non-UI
              process (simulated by wrapping into fork); please let me
              know what you think if you find some time.</p>
            <p class="MsoNormal"><o:p> </o:p></p>
            <p class="MsoNormal">s := Semaphore new.</p>
            <p class="MsoNormal">[[1/0] ensure: [s signal]] fork.</p>
            <p class="MsoNormal">s wait.</p>
            <p class="MsoNormal">self error: 'error'</p>
            <p class="MsoNormal"><o:p> </o:p></p>
            <p class="MsoNormal">[s := Semaphore new.</p>
            <p class="MsoNormal">[[1/0] ensure: [s signal]] fork.</p>
            <p class="MsoNormal">s wait.</p>
            <p class="MsoNormal">self error: 'error'] fork</p>
            <p class="MsoNormal"><o:p> </o:p></p>
            <p class="MsoNormal">I’m still just trying to analyze what
              is a reasonable requirement as for the semantics and the
              suggested code I just a rough idea for your review; I
              don’t have enough experience to see the bigger picture.</p>
            <p class="MsoNormal"><o:p> </o:p></p>
            <p class="MsoNormal">Thanks a lot,</p>
            <p class="MsoNormal">jaromir</p>
            <p class="MsoNormal"><o:p> </o:p></p>
            <p class="MsoNoSpacing"><span lang="CS">--</span></p>
            <p class="MsoNoSpacing"><strong><span style="font-family:
                  "Calibri Light",sans-serif; color: rgb(51,
                  51, 51); font-weight: normal;">Jaromír Matas</span></strong><span
                style="font-family: "Calibri
                Light",sans-serif; color: rgb(85, 85, 85);"><o:p></o:p></span></p>
            <p class="MsoNoSpacing"><span style=""><a
                  moz-do-not-send="true"
                  class="moz-txt-link-abbreviated"
                  href="mailto:mail@jaromir.net">mail@jaromir.net</a></span></p>
          </div>
        </blockquote>
        <br>
        Hi Jaromir,<br>
        <br>
        This code doesn't account for what I said when you were writing
        this message (   :) !!! ), but it doesn't add complexity, it is
        perhaps more robust, and could be of use for some use case I
        can't foresee. I'll integrate it, with a little change to
        improve readability, but keeping your authorship.<br>
        <br>
        Thanks a lot,<br>
        <pre class="moz-signature" cols="72">-- 
Juan Vuletich<a moz-do-not-send="true" class="moz-txt-link-freetext" href="https://twitter.com/JuanVuletich"></a></pre>
      </blockquote>
      <br>
      Done. Now, when scheduling a new Morphic process there's no need
      to remember to terminate the old one. Gosh, as I write this I now
      realiza that it is no longer possible to have 2 different worlds
      running in different processes. Mhhhh. Back to the drawing board.<br>
      <br>
      Thanks,<br>
      <br>
      <pre class="moz-signature" cols="72">-- 
Juan Vuletich<a moz-do-not-send="true" class="moz-txt-link-freetext" href="https://twitter.com/JuanVuletich"></a></pre>
    </blockquote>
    <br>
    Well the UIProcess class variable already precludes this. When we
    work on enabling multiple worlds, each with its own running process,
    we'll see. I'll leave it there for now.<br>
    <br>
    Thanks,<br>
    <pre class="moz-signature" cols="72">-- 
Juan Vuletich
<a class="moz-txt-link-abbreviated" href="http://www.cuis-smalltalk.org">www.cuis-smalltalk.org</a>
<a class="moz-txt-link-freetext" href="https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev">https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev</a>
<a class="moz-txt-link-freetext" href="https://github.com/jvuletich">https://github.com/jvuletich</a>
<a class="moz-txt-link-freetext" href="https://www.linkedin.com/in/juan-vuletich-75611b3">https://www.linkedin.com/in/juan-vuletich-75611b3</a>
<a class="moz-txt-link-freetext" href="https://independent.academia.edu/JuanVuletich">https://independent.academia.edu/JuanVuletich</a>
<a class="moz-txt-link-freetext" href="https://www.researchgate.net/profile/Juan-Vuletich">https://www.researchgate.net/profile/Juan-Vuletich</a>
<a class="moz-txt-link-freetext" href="https://patents.justia.com/inventor/juan-manuel-vuletich">https://patents.justia.com/inventor/juan-manuel-vuletich</a>
<a class="moz-txt-link-freetext" href="https://twitter.com/JuanVuletich">https://twitter.com/JuanVuletich</a></pre>
  </body>
</html>