Windows NT synchronization primitives for Linux
Windows NT synchronization primitives for Linux
Posted Feb 18, 2024 15:32 UTC (Sun) by tialaramex (subscriber, #21167)In reply to: Windows NT synchronization primitives for Linux by Sesse
Parent article: Windows NT synchronization primitives for Linux
And one step harder is wait freedom, a guarantee of local progress - if our threads are executing specific work will get done, if thread A is squawking a goose, that goose gets squawked, it may not get squawked quickly but it definitely gets squawked, whereas a lock free algorithm is allowed to leave thread A starving forever until some day squawking that goose is globally the only work left to do.
Posted Feb 21, 2024 1:26 UTC (Wed)
by itsmycpu (guest, #139639)
[Link]
Of course, there can be (and there are already some) higher level abstractions for lock-free programming as well.
Windows NT synchronization primitives for Linux