<div dir="ltr">I may chip in here if any API docs update is needed.<div><br></div><div>Please let me know.</div><div><br></div><div>Manish</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Dec 30, 2022 at 1:54 PM Alan Bateman <<a href="mailto:Alan.Bateman@oracle.com">Alan.Bateman@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 29/12/2022 22:25, robert engels wrote:<br>
> I also found, Thread.onSpinWait().<br>
><br>
> The default implementation is empty, but I wonder if there should be <br>
> an implementation for VThreads that functions the same as <br>
> Thread.yield()...<br>
<br>
Thread.onSpinWait is for spin or busy waiting in low-level code, say <br>
when spinning for some variable to change. It is compiled to a pause <br>
instruction (or isb or the equivalent for the processor, maybe even a <br>
nop) so it's measured in CPU cycles. This could be a different order of <br>
magnitude to a Thread.yield that might be a few hundred nanoseconds in <br>
the best case and appropriate when there isn't any work to do and useful <br>
to give up the processor. This is an area where the API docs could <br>
provide some guidance.<br>
<br>
-Alan<br>
</blockquote></div>