Arc Forumnew | comments | leaders | submitlogin
2 points by almkglor 5710 days ago | link | parent

Cute.^^

Native Arc as in ArcN?

For porting into Anarki, I suggest you use the new 'thread-local types for global variables:

  wipe.re-text*
  wipe.re-paths*
  wipe.re-fail
=>

  (= re-text*  (thread-local)) (wipe (re-text*))
  (= re-paths* (thread-local)) (wipe (re-paths*))
  (= re-fail   (thread-local)) (wipe (re-fail))
You'll need to change all references to globals from say re-text* to (re-text*) though.

This will allow multiple threads to safely use your library in parallel, e.g. in 'asv.



1 point by drcode 5710 days ago | link

That is nice that anarki has thread-local storage... I had stability issues with anarki so I've just been using arc2 with some patches lately... but I've definitely been missing thread-local storage...

-----