Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/go-winio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7843996
Choose a base ref
...
head repository: microsoft/go-winio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7da180e
Choose a head ref
  • 4 commits
  • 4 files changed
  • 3 contributors

Commits on Jan 9, 2018

  1. pipe: Resolve race between close and connect

    This change resolves the issue where Accept() returns ERROR_NO_DATA
    because the client closes the connection immediately. It resolves
    the race by ignoring that particular connection and waiting on a
    new one.
    jstarks committed Jan 9, 2018
    Configuration menu
    Copy the full SHA
    ae842e4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #70 from jstarks/connect_race

    pipe: Resolve race between close and connect
    John Howard authored Jan 9, 2018
    Configuration menu
    Copy the full SHA
    b7c3cf0 View commit details
    Browse the repository at this point in the history
  3. Remove workaround to perf issues in go1.6

    Starting in go1.9, Golang lowers the timer frequency when not required
    reducing CPU usage. This workaround prevents Golang from doing so,
    and since the initial issue was fixed, I see no perf regressions.
    This does not need to be conditional based on Golang verison, as the issue
    being worked around was only in go1.6.
    
    Signed-off-by: Darren Stahl <[email protected]>
    darstahl committed Jan 9, 2018
    Configuration menu
    Copy the full SHA
    6f4ae36 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2018

  1. Merge pull request #71 from darrenstahlmsft/RemoveTimeBeginPeriod

    Remove workaround to perf issues in go1.6
    darstahl authored Jan 16, 2018
    Configuration menu
    Copy the full SHA
    7da180e View commit details
    Browse the repository at this point in the history
Loading