Lock Lua Context

atomic.lock()

Runs Lua exclusively in this thread.

Provides a way of guaranteeing atomic operations (like updating several table entries in one go).

Warning

Once called, atomic.unlock() must be called within 1 second, otherwise the running Lua thread will be terminated!