Total Complexity | 5 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | def fcntl(fd, op, arg=0): |
||
2 | return 0 |
||
3 | |||
4 | |||
5 | def ioctl(fd, op, arg=0, mutable_flag=True): |
||
6 | if mutable_flag: |
||
7 | return 0 |
||
8 | else: |
||
9 | return "" |
||
10 | |||
11 | |||
12 | def flock(fd, op): |
||
13 | return |
||
14 | |||
15 | |||
16 | def lockf(fd, operation, length=0, start=0, whence=0): |
||
17 | return |
||
18 |