-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
C API threadsafety #32
Comments
Good point - will add information about that. The interface is thread-safe as long as you don't use the same |
By "using in more than one thread", do you mean sending between threads and then using it, or using it concurrently from multiple threads? I'm writing Rust bindings for this lib, and I just want to be absolutely sure here. |
It's ok to send it from one thread to another. The only limitation is to not use it concurrently from multiple threads. |
@tazz4843 did you ever write the rust bindings for the lib ? If yes, I'm interested in them! |
I did @happysalada, and you can find them over at https://github.com/tazz4843/whisper-rs |
I can't see any docs as to threadsafety for the C API. Information here would be very helpful for me and future users. Thanks!
The text was updated successfully, but these errors were encountered: