You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the things which was pointed out during the review of #22 is that libpathrs's C API appears to be fundamentally thread-unsafe. So we need to Arc<Mutex<...>> the whole thing, as well as having per-thread errors.
The text was updated successfully, but these errors were encountered:
While not the prettiest thing in the world, daa9a6a should fix the issue. This will require making the Go binding lock itself to the right OS thread during each operation...
One of the things which was pointed out during the review of #22 is that
libpathrs
's C API appears to be fundamentally thread-unsafe. So we need toArc<Mutex<...>>
the whole thing, as well as having per-thread errors.The text was updated successfully, but these errors were encountered: