this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Stub out fcntl(F_*LCK)

+17
+5
src/kernel/emulation/linux/fcntl/fcntl.c
··· 73 73 74 74 return 0; 75 75 } 76 + case F_SETLK: 77 + case F_SETLKW: 78 + case F_GETLK: 79 + // TODO 80 + return 0; 76 81 // TODO: implement remaining commands 77 82 default: 78 83 return -EINVAL;
+12
src/kernel/emulation/linux/fcntl/fcntl.h
··· 46 46 F_GETPATH = 50, 47 47 }; 48 48 49 + enum { 50 + LINUX_F_RDLCK = 0, 51 + LINUX_F_WRLCK, 52 + LINUX_F_UNLCK, 53 + }; 54 + 55 + enum { 56 + F_RDLCK = 1, 57 + F_UNLCK, 58 + F_WRLCK, 59 + }; 60 + 49 61 #ifndef FD_CLOEXEC 50 62 # define FD_CLOEXEC 1 51 63 #endif