success = LockRecord(fh,offset,length,mode,timeout)
D0 D1 D2 D3 D4 D5
BOOL LockRecord(BPTR,ULONG,ULONG,ULONG,ULONG)
This locks a portion of a file for exclusive access. Timeout is how long to wait in ticks (1/50 sec) for the record to be available.
Valid modes are:
-
REC_EXCLUSIVE
-
REC_EXCLUSIVE_IMMED
-
REC_SHARED
-
REC_SHARED_IMMED
- Note:
-
For the IMMED modes, the timeout is always ignored.
Record locks are tied to the FileHandle used to create them. The same FileHandle can get any number of exclusive locks on the same record, for example. These are cooperative locks because they only affect other people calling LockRecord().
In 2.0 through 2.02 (V36), LockRecord() only worked in the ramdisk. Attempting to lock records on the disk file system causes a crash. This was fixed for V37.