<div dir="auto"><div class="gmail_quote" dir="auto"><div dir="ltr">Ryan Joseph <<a href="mailto:ryan@thealchemistguild.com">ryan@thealchemistguild.com</a>> schrieb am Sa., 23. Juni 2018, 16:04:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
> On Jun 23, 2018, at 8:55 PM, Sven Barth via fpc-pascal <<a href="mailto:fpc-pascal@lists.freepascal.org" target="_blank" rel="noreferrer">fpc-pascal@lists.freepascal.org</a>> wrote:<br>
> <br>
> A threadvar section is started using "class threadvar" and the "class" specifier is required. They are accessed like ordinary class variables with the difference that they'll hold different values per thread - the same as global threadvars after all.<br>
> <br>
> This feature is Delphi compatible (and was added, because I noticed that Delphi supported it and FPC did not ðŸ˜…)<br>
<br>
That’s an interesting idea I wonder how it could be used. Does it do anything to help with shared data between threads or is just a way to get quick access to thread safe memory?<br></blockquote></div><div dir="auto"><br></div><div dir="auto">It's merely a scoped threadvar, so nothing special there. And in case you don't know about threadvars: the concept of them is that every thread has its own "instance" of the variable. </div><div dir="auto"><br></div><div dir="auto">See also here: <a href="https://www.freepascal.org/docs-html/ref/refse26.html">https://www.freepascal.org/docs-html/ref/refse26.html</a></div><div dir="auto"><br></div><div dir="auto">Regards, </div><div dir="auto">Sven </div><div class="gmail_quote" dir="auto"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote></div></div>