#include "../include/RamLock.h" namespace environnement { namespace ramlock { void RamLock::reset (void) { // Take all lock and set UNLOCK value for (uint32_t it = 0; it < _param->_size; it ++) _lock [it] = UNLOCK; } }; };