| 28 | namespace phxsql { |
| 29 | |
| 30 | FileLock::FileLock() { |
| 31 | m_iFd = -1; |
| 32 | } |
| 33 | |
| 34 | bool FileLock::Open(const char* sPath) { |
| 35 | m_iFd = open(sPath, O_RDWR | O_CREAT | O_LARGEFILE, S_IRUSR | S_IWUSR); |
nothing calls this directly
no outgoing calls
no test coverage detected