mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-29 20:13:57 +08:00
14 lines
180 B
C
14 lines
180 B
C
|
#include <stdint.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
typedef struct lock_s lock_t;
|
||
|
struct lock_s
|
||
|
{
|
||
|
int type;
|
||
|
off_t start;
|
||
|
off_t end;
|
||
|
pid_t pid;
|
||
|
uint64_t owner;
|
||
|
lock_t *next;
|
||
|
};
|