-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix a use-after-free bug in unsafe code caused by a race condition between timer wheel's `advance()` operation and client's `invalidate` calls. - To make unsafe code less error prone, wrap `DeqNodes` in `ValueEntry` with `triomphe::Arc` to share between threads, instead of cloning them. - Addressed an ENHANCEME TODO in the `TimerWheel`.
- Loading branch information
1 parent
dc5fd49
commit 0842409
Showing
4 changed files
with
123 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
"ahash", | ||
"armv", | ||
"benmanes", | ||
"CHECKME", | ||
"circleci", | ||
"CLFU", | ||
"clippy", | ||
|
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
Oops, something went wrong.