Sha256: f6ab9bec5e29e5f3971a62d9765ba01e13c8a963ec8269eda4bd9a81caa83409
Contents?: true
Size: 348 Bytes
Versions: 2
Compression:
Stored size: 348 Bytes
Contents
# frozen_string_literal: true class Lock::File # The constants found in this module are defined # by unistd.h. Their documentation can be found in # the # [lockf(3)](https://man.freebsd.org/cgi/man.cgi?query=lockf&sektion=3) # man page module Constants F_ULOCK = 0x0 F_LOCK = 0x1 F_TLOCK = 0x2 F_TEST = 0x3 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lockf.rb-2.1.0 | lib/lock/file/constants.rb |
lockf.rb-2.0.0 | lib/lock/file/constants.rb |