-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Segment fault at poll_future
#6605
Comments
Please add text as text, not as an image. Actual text is much easier to read than text in an image. Thanks. |
Thanks for your remind, already updated in original post |
Your program is aborting in |
thx for ur reply, but why would a c++ exception is caught by rust? And is there any way to confirm that? |
Your code or one of your dependencies is probably calling into C++ incorrectly. It's unlikely to be a bug in Tokio. |
Yeah, but I can't figure out why a c++ exception is caught by rust? Should it be caught by c++? And if there any advice to capture more accurate exception message? Thanks! |
Generally, C++ exceptions must be caught in C++. They should not unwind into Rust code. |
It turns out that my c++ code runs in async runtime and throws an exception. Thx for ur help! |
The text was updated successfully, but these errors were encountered: