|
|
|
|
|
by scott_s
2539 days ago
|
|
That depends on the synchronization mechanism used, and whether or not that mechanism is hooked into the kernel scheduler. Sometimes it is (such as pthread_mutex) and sometimes it is not (such as rolling your own spin locks). |
|
Spin-locks are not really the mechanism of choice for this level of abstraction.