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
When we are trying to spawn a memory costy task with async-std async_std::task::spawn(some_future())
It throws thread 'async-std/runtime' has overflowed its stack
Although we can solve this problem with the following code:
If that future is a large set of async functions you may be able to break it up manually using a pinned box for some memory indirection, which should help I think.
When we are trying to spawn a memory costy task with async-std
async_std::task::spawn(some_future())
It throws
thread 'async-std/runtime' has overflowed its stack
Although we can solve this problem with the following code:
But if async_std also has the specified task stack size, it can save some time.
The text was updated successfully, but these errors were encountered: