-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make running tokei
thread-safe
#42
Conversation
interesting, I see in the JLLWrappers source it says this is the "new-style edit: nevermind, found JuliaLang/julia#37070 |
See also JuliaLang/julia#34726 for I believe this is what was causing all my troubles with cloning repositories today when using multiple threads. With this fix, I don't have any issues. Luckily we already require Julia v1.6. |
Sounds good! Yeah, I think I didn't really realize that |
I went to check LicenseCheck.jl to see if I use the |
The problem is only for the executables (they need to have some environment variables to be set), not libraries |
I guess there could be an issue if the library couldn't handle being called into by multiple threads (if it was mutating its own globals or something when I call one of its functions), but we haven't seen that yet for |
we do |
btw, I imagine 90%+ of the time is spent on IO, so we could probably just use |
No description provided.