We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
omnios does not support the full set of features defined in t/default.bats, presumably because it does not have a native implementation of flock(2).
t/default.bats
flock(2)
Either these features should be fixed, or disabled so users can't accidentally perform dangerous operations with a broken flock.
The text was updated successfully, but these errors were encountered:
This was originally due to using lockf() instead of fcntl(). lockf() does not support shared locks, so these bugs should have been expected.
lockf()
fcntl()
it actually seems that most of these are throwing Bad file number errors.
Bad file number
Additionally, -u is not successfully unlocking files.
-u
Sorry, something went wrong.
No branches or pull requests
omnios does not support the full set of features defined in
t/default.bats
, presumably because it does not have a native implementation offlock(2)
.Either these features should be fixed, or disabled so users can't accidentally perform dangerous operations with a broken flock.
The text was updated successfully, but these errors were encountered: