| 52 | } |
| 53 | |
| 54 | bool FileLock::Fcntl(int iCmd, int iType, int iOffset, int iLen, int iWhence) { |
| 55 | |
| 56 | uint64_t offset = iOffset; |
| 57 | uint64_t len = iLen; |
| 58 | return Fcntl(iCmd, iType, offset, len, iWhence); |
| 59 | } |
| 60 | |
| 61 | bool FileLock::Fcntl(int iCmd, int iType, uint64_t iOffset, uint64_t iLen, int iWhence) { |
| 62 | #ifdef __WORDSIZE |
nothing calls this directly
no outgoing calls
no test coverage detected