The lock accessor is used to place a
lock on the resource specified in the operand
.
When a resource is locked, the current request prevents other processes
from obtaining the same lock until it is released by the first process
with a call to the unlock accessor.
A second request to lock an already locked resource will block indefinately until the
existing lock is released with the unlock accessor.
The lock accessor can be used with <exception>
handling blocks to create robust transactional
applications.