/*
* call-seq:
* lock.release() -> self
*
* Release the lock. This should only be called by the process which obtains
* the lock.
*/
static VALUE
frt_lock_release(VALUE self)
{
Lock *lock;
GET_LOCK(lock, self);
lock->release(lock);
return self;
}