Last active
May 29, 2019 14:42
-
-
Save trungpv1601/d46b9162e9bc4c8a494682f4eb5403b5 to your computer and use it in GitHub Desktop.
No module named 'fcntl'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fcntl(fd, op, arg=0): | |
return 0 | |
def ioctl(fd, op, arg=0, mutable_flag=True): | |
if mutable_flag: | |
return 0 | |
else: | |
return "" | |
def flock(fd, op): | |
return | |
def lockf(fd, operation, length=0, start=0, whence=0): | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment