#include <mutex> /***********************/ mutex m; /***********************/ void function() { m.lock(); /* Function's Code */ m.unlock(); }