Class that models Mutex Concept buts does nothing.
class null_mutex;
#include "tbb/null_mutex.h"
A null_mutex models the Mutex Concept syntactically, but does nothing. It is useful for instantiating a template that expects a Mutex, but no mutual exclusion is actually needed for that instance.
See Mutex Concept.