The implementation shown there isn't thread-safe. Even its *attempt* to
be thread-safe is completely broken due to it creating a *new* Mutex
each time rather than using a single one. Normally you'd use lock (i.e.
Monitor.Enter/Exit) rather than a Mutex here, which reduces it to
merely being broken in a different way.