Java's Object.wait() warns against "spurious wakeups" but C#'s Monitor.wait() doesn't seem to mention it at all.
Seeing how Mono is implemented on top of Linux and Linux has spurious wakeups, shouldn't this be documented anywhere?
|
Java's Object.wait() warns against "spurious wakeups" but C#'s Monitor.wait() doesn't seem to mention it at all. Seeing how Mono is implemented on top of Linux and Linux has spurious wakeups, shouldn't this be documented anywhere?
| |||
|
feedback
|
|
Joe Duffy's "Concurrent Programming On Windows" mentions this (P311-312, P598). This bit is interesting:
He then gives the normal pattern for a while loop testing the condition. I would say that from this it's reasonable to expect that | |||||||
feedback
|