Skip to content
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

[WASI] sockets #106977

Merged
merged 16 commits into from
Oct 2, 2024
Prev Previous commit
Next Next commit
SuppressFlow
  • Loading branch information
pavelsavara committed Sep 26, 2024
commit fea52aab7099478492ccd658b5192f8ab6ee1c2e
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ public static void HandleSocketEvent(object? state)
SocketAsyncContext ctx = (SocketAsyncContext)state!;
try
{
ctx.HandleEventsInline(Sys.SocketEvents.Write | Sys.SocketEvents.Read);
using (ExecutionContext.SuppressFlow())
{
ctx.HandleEventsInline(Sys.SocketEvents.Write | Sys.SocketEvents.Read);
}
}
catch (Exception e)
{
Expand Down
Loading