diff options
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/brlock.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/locking/brlock.c b/source3/locking/brlock.c index cc5d7a8ae0..1f4c716391 100644 --- a/source3/locking/brlock.c +++ b/source3/locking/brlock.c @@ -43,6 +43,16 @@ static struct db_context *brlock_db; +struct byte_range_lock { + struct files_struct *fsp; + unsigned int num_locks; + bool modified; + bool read_only; + struct file_id key; + struct lock_struct *lock_data; + struct db_record *record; +}; + /**************************************************************************** Debug info at level 10 for lock struct. ****************************************************************************/ |