Skip to content

Commit

Permalink
Fix async-io bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jun 2, 2024
1 parent 0d11b5d commit 99df0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub fn init_async_io() -> Result<(), esp_idf_svc::sys::EspError> {
#[cold]
#[cfg(feature = "std")]
async fn init_async_io_async() {
#[cfg(all(feature = "async-io", not(feature = "async-io-mini")))]
#[cfg(not(feature = "async-io-mini"))]
{
// Force the `async-io` lazy initialization to trigger earlier rather than later,
// as it consumes a lot of temp stack memory
Expand Down

0 comments on commit 99df0c8

Please sign in to comment.