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

Simplify windows SockState reference counting #1154

Merged
merged 4 commits into from
Nov 28, 2019

Commits on Nov 26, 2019

  1. Configuration menu
    Copy the full SHA
    88407fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ef0330 View commit details
    Browse the repository at this point in the history
  3. Fix leaked sock states (tokio-rs#1154)

    A reference of the sock state Arc is blocked by a pending AFD poll
    request, this reference will leak if there's no explicit poll done
    before the program terminates. That's why doing an explicit "select"
    during inner selector drop ensures all sock state references are freed.
    
    Fixes: tokio-rs#1146
    
    Signed-off-by: Daniel Tacalau <dst4096@gmail.com>
    dtacalau authored and piscisaureus committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    3d654f7 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2019

  1. Configuration menu
    Copy the full SHA
    b795c98 View commit details
    Browse the repository at this point in the history