| 46 | } |
| 47 | |
| 48 | FileLock::~FileLock() { |
| 49 | if (m_iFd > 0) |
| 50 | close(m_iFd); |
| 51 | m_iFd = -1; |
| 52 | } |
| 53 | |
| 54 | bool FileLock::Fcntl(int iCmd, int iType, int iOffset, int iLen, int iWhence) { |
| 55 |
nothing calls this directly
no outgoing calls
no test coverage detected