Lock Lua
tools.lock()
Locks Lua to run exclusively from this point.
It provides a way of guaranteeing atomic operations (like updating several table entries in one go).
The unlock tools.unlock must be called within 1 second, otherwise the running Lua thread will be terminated.
See also: 🗒️ Semaphore Object Intro for more flexible objects, especially semaphore.mutex.