<div dir="auto">Thanks. I will pass this along and resubmit a patch to at least add a comment and fix formatting issues.<div dir="auto"><br></div><div dir="auto">Do we have a good place to add this information to the documentation? </div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Nov 21, 2023, 5:35 AM Sebastian Huber <<a href="mailto:sebastian.huber@embedded-brains.de">sebastian.huber@embedded-brains.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 20.11.23 18:42, Joel Sherrill wrote:<br>
> The loop that waits for another thread to complete the once<br>
> initialization was flagged as a potential infinite loop.<br>
> This is because there was no way to break out of the loop<br>
> inside the loop.  The solution is to make the state variable<br>
> volatile which indicates it may be modified by another thread<br>
> of execution.<br>
> <br>
> This was flagged by a user Coverity Scan run which apparently is<br>
> configured differently from the instance provided by Coverity to<br>
> open source projects.<br>
<br>
This is a configuration issue of Coverity Scan. You have to teach <br>
Coverity Scan something about:<br>
<br>
_Atomic_Fence( ATOMIC_ORDER_ACQUIRE );<br>
_Atomic_Fence( ATOMIC_ORDER_RELEASE );<br>
<br>
rtems_mutex_lock();<br>
rtems_condition_variable_wait();<br>
rtems_mutex_unlock();<br>
<br>
Using "volatile" for multi-threaded synchronization is not correct in <br>
C11 or later. This keyword is for device access. For multi-threaded <br>
synchronization you need atomic operations or mutexes, etc. From my <br>
point of view, Coverity Scan should warn if you use volatile for <br>
multi-threaded synchronization.<br>
<br>
-- <br>
embedded brains GmbH<br>
Herr Sebastian HUBER<br>
Dornierstr. 4<br>
82178 Puchheim<br>
Germany<br>
email: <a href="mailto:sebastian.huber@embedded-brains.de" target="_blank" rel="noreferrer">sebastian.huber@embedded-brains.de</a><br>
phone: +49-89-18 94 741 - 16<br>
fax:   +49-89-18 94 741 - 08<br>
<br>
Registergericht: Amtsgericht München<br>
Registernummer: HRB 157899<br>
Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler<br>
Unsere Datenschutzerklärung finden Sie hier:<br>
<a href="https://embedded-brains.de/datenschutzerklaerung/" rel="noreferrer noreferrer" target="_blank">https://embedded-brains.de/datenschutzerklaerung/</a><br>
</blockquote></div>