<div dir="ltr">Hi Joe --<br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 8, 2015 at 4:27 PM, Joseph Provino <span dir="ltr"><<a href="mailto:joseph.provino@oracle.com" target="_blank">joseph.provino@oracle.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div bgcolor="#FFFFFF" text="#000000">
    <br>
    <div>On 4/6/2015 2:20 PM, Srinivas
      Ramakrishna wrote:<br>
    </div>
    <blockquote type="cite">
      <div dir="ltr">Hi Joe --</div>
    </blockquote>
    Hi Ramki, nice to hear from you and thanks for the review.
    <span class=""><blockquote type="cite">
      <div dir="ltr">
        <div><br>
        </div>
        <div>I am not terribly familiar with G1 code yet, but here's a
          suggestion:
          <div><br>
          </div>
          <div>* rename the boolean field to "in_suspendible_thread_set"
            (or "suspendible_thread"), the corresponding setters and
            gettes to</div>
          <div>set_in_suspendible_thread_set(),
            clear_in_suspendible_thread_set(), and
            is_in_suspendible_thread_set(), or preferably:</div>
          <div>set_suspendible_thread(), clear_suspendible_thread() and
            is_suspendible_thread(). (I don't particularly like the
            set_...._set() naming.)</div>
        </div>
      </div>
    </blockquote>
    <br></span>
    I changed the variable and the methods as you suggested.  Much
    easier on the eyes.<br>
    <br>
    DEBUG_ONLY(bool _suspendible_thread;)<span class=""><br>
    <br>
    <blockquote type="cite">
      <div dir="ltr">
        <div>
          <div><br>
          </div>
          <div>Do we allow threads to recursively enter the suspendible
            thread set in nested fashion? I'm guessing we don't, in
            which case, you would</div>
          <div>use this information local to the thread to
            prevent/forbid such recursive entries or exits when it isn't
            part of the set, by asserting</div>
          <div>that the bit isn't set when a thread joins the set and
            never clear before a thread leaves the set. I understand
            that there's a scoped</div>
          <div>join/leave abstraction via SuspendibleThreadSetJoiner,
            but there also seem to be a bunch of naked join/leave calls,
            so the</div>
          <div>extra checking would likely be worthwhile.</div>
        </div>
      </div>
    </blockquote></span>
    This is a good question.  If I put in checks in join / leave<br>
    <br>
    void SuspendibleThreadSet::join() {<br>
      assert(Thread::current()->is_suspendible_thread() == false,<br>
        "Thread already joined");<br>
    <br>
    void SuspendibleThreadSet::leave() {<br>
      //assert(Thread::current()->is_suspendible_thread(),<br>
      //  "Thread not joined");<br>
    <br>
    jprt hits the assert in join.<br>
    <br>
    It doesn't seem right to call join if a thread is already joined.  <br>
    Would it be correct to just return if trying to rejoin or trying to
    leave when not joined?<br></div></blockquote><div><br></div><div>That would imply (along with the use of the scoped join/leave abstraction) that nested joins/leaves are allowed.</div><div>I'd suggest then, that a thread keep track of the number of times it joined and left by using a full-fledged</div><div>counter instead of a boolean bit.</div><div>Then your asserts would check that it wasn't trying to leave when its count was 0.</div><div><br></div><div>I'll look at yr new webrev tomorrow.</div><div><br></div><div>thanks.</div><div>-- ramki</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div bgcolor="#FFFFFF" text="#000000">
    <br>
    What's there seems to be harmless but I can't be sure of that.<br>
    <br>
    joe<span class=""><br>
    <blockquote type="cite">
      <div dir="ltr">
        <div>
          <div><br>
          </div>
          <div>As Eric notes, you could make all the new fields/methods
            NOT_PRODUCT, but I am not too concerned about leaving them
            in product mode</div>
          <div>as well, since the frequency of transition to and from
            STS mode is probably fairly low, and the extra information
            may be useful for</div>
          <div>field serviceability. But I will let those more familiar
            with G1 opine more strongly on that.</div>
          <div><br>
          </div>
          <div>Looks good otherwise.</div>
          <div><br>
          </div>
          <div>Thanks!</div>
          <div>-- ramki (openjdk: ysr)</div>
          <div><br>
          </div>
          <div><br>
          </div>
        </div>
      </div>
      <div class="gmail_extra"><br>
        <div class="gmail_quote">On Mon, Apr 6, 2015 at 10:25 AM, Joseph
          Provino <span dir="ltr"><<a href="mailto:joseph.provino@oracle.com" target="_blank">joseph.provino@oracle.com</a>></span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">CR:  <a href="https://bugs.openjdk.java.net/browse/JDK-7006810" target="_blank">https://bugs.openjdk.java.net/browse/JDK-7006810</a><br>
            <br>
            webrev:  <a href="http://cr.openjdk.java.net/%7Ejprovino/7006810/webrev.00" target="_blank">http://cr.openjdk.java.net/~jprovino/7006810/webrev.00</a><br>
            <br>
            test:  jprt<br>
          </blockquote>
        </div>
        <br>
      </div>
    </blockquote>
    <br>
  </span></div>

</blockquote></div><br></div></div>