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

fix IO deadlock condition #22886

Merged
merged 1 commit into from
Jul 28, 2017
Merged

fix IO deadlock condition #22886

merged 1 commit into from
Jul 28, 2017

Commits on Jul 21, 2017

  1. fix IO deadlock condition

    when calling uv_shutdown on a handle being written to by another process
    we might never get the UV__POLLOUT notification
    but we also don't need to delay the uv_close call
    if we have nothing to write
    
    in the future, we should introduce a new `uv_drain` callback,
    instead of continuing to abuse uv_shutdown for this purpose
    
    fix #22832
    vtjnash committed Jul 21, 2017
    Configuration menu
    Copy the full SHA
    8949a95 View commit details
    Browse the repository at this point in the history