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.

11 lines
123 B

2 years ago
  1. #pragma once
  2. struct lock
  3. {
  4. int type;
  5. off_t start;
  6. off_t end;
  7. pid_t pid;
  8. uint64_t owner;
  9. struct lock *next;
  10. };