-
-
Notifications
You must be signed in to change notification settings - Fork 150
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
thread '<unnamed>' panicked at 'NtWriteFile
not available', library\std\src\sys\windows\c.rs:1293:9
#263
Comments
not sure what's going on, might be ctor or this library or neither? also opened mmastrac/rust-ctor#219 |
Hi, this is likely caused by the ctor. Rust std currently uses a ctor to load some functions. So if other code also runs in a ctor it's possible that it runs before the std ctor. This would cause it to think the function couldn't be loaded. This should be fixed in Rust's std to ensure this does not happen. I'll submit a patch to Rust as soon as I'm able. |
will continue the issue in |
The text was updated successfully, but these errors were encountered: