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

Investigate dead lock of dynamic buffer queue on linux #1081

Closed
rrahn opened this issue Jun 7, 2019 · 0 comments · Fixed by #1286
Closed

Investigate dead lock of dynamic buffer queue on linux #1081

rrahn opened this issue Jun 7, 2019 · 0 comments · Fixed by #1286
Assignees
Labels
bug faulty or wrong behaviour of code

Comments

@rrahn
Copy link
Contributor

rrahn commented Jun 7, 2019

An empty dynamic buffer queue seems to dead lock if too many readers are acquiring the shared lock. From some first investigations it seems that the producer thread acquiring the unique lock for the shared mutex is never locking because there are always consumer threads in the shared lock.

Things to further investigate:

  • Is the shared mutex in the standard implementation starvation free?
  • Are all consumers leaving the shared lock or is there at least one thread always locking the shared lock?
  • Is a non shared implementation with a normal mutex and uniqe locks in the consumer section also dead locking?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug faulty or wrong behaviour of code
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants