mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-04-21 12:31:43 +00:00
12 lines
123 B
C
12 lines
123 B
C
#pragma once
|
|
|
|
struct lock
|
|
{
|
|
int type;
|
|
off_t start;
|
|
off_t end;
|
|
pid_t pid;
|
|
uint64_t owner;
|
|
struct lock *next;
|
|
};
|