mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
180 B
13 lines
180 B
#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;
|
|
};
|