long now,
DatabaseImpl database)
throws DatabaseException {
int lockTableIndex = getLockTableIndex(nodeId);
Latch latch = lockTableLatches[lockTableIndex];
latch.acquire();
try {
return makeTimeoutMsgInternal
(isLockNotTxnTimeout, locker, nodeId, type, grantType, useLock,
timeout, start, now, database);
} finally {
latch.release();
}
}