concurrent doubly-linked list (1 writer, n-readers)
- by Arne
Hi guys,
I am back in the field of programming for my Diploma-thesis now and stumbled over the following issue: I need to implement a thread-safe doubly-linked list for one thread writing the list at any position (delete, insert, mutate node data) and one to many threads traversing and reading the list.
I am well aware that mutexes can be used to…