| 156 | } |
| 157 | |
| 158 | bool InotifyTree::addInode(ino_t inodeNumber, InotifyNode *node) { |
| 159 | return inodes.insert(std::pair<ino_t, InotifyNode *>(inodeNumber,node)).second; |
| 160 | } |
| 161 | |
| 162 | void InotifyTree::removeInode(ino_t inodeNumber) { |
| 163 | inodes.erase(inodeNumber); |
no outgoing calls
no test coverage detected