-
Notifications
You must be signed in to change notification settings - Fork 489
crossbeam-skiplist bug #1023
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
Comments
Thanks for the report! IIUC, insert reduces the refcount of the old value and then sets the new value, so if insert makes the refcount zero, a get that occurs between the time the refcount is reduced and the new value is set will return None because it sees a deleted value with a refcount of zero. |
Do you have any plans to fix it |
I consider it a bug that needs to be fixed, but I'm not sure if I will be able to work on a fix anytime soon. |
I am trying to fix it. #1101 |
[dependencies]
crossbeam-skiplist = "0.1.1"
output:
The text was updated successfully, but these errors were encountered: