Is the linux kernel's list.h thread safe?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, the You can see so for yourself here, there is no mention of locking mechanisms etc. |
|||
|
|
|
Just read the implementation; the answer is clearly NO in the presence of writers. (Multiple readers on immutable data is safe.) Paul McKenney gives an introduction to RCU on the ever-helpful LWN, from which you can glean some tips on managing thread-safe updates to linked lists. Of course, your usage may be simple enough that spinlocks will suffice. |
|||
|
|