-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch handles the following scenario: - fd0 locks l1 -> success - fd1 locks l1 -> blocks - fd1 closes - new connection, gets fd1 - fd0 unlocks l1 -> success -> fd1 gets notified of the l1 assigment, but if never asked for it. That's because when an fd gets closed, it doesn't remove itself from the queues it's sitting on. The patch is weak, but has been extensively tested, so it's going in as a temporary fix. Thanks to Lloyd C. Cha for the report, testing, and help with the debugging.
- Loading branch information
Alberto Bertogli
committed
May 24, 2007
1 parent
f695405
commit 5cf12c6
Showing
5 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters