| 995 | } |
| 996 | |
| 997 | void MountSystem::stopFileChangeNotifications() |
| 998 | { |
| 999 | for ( U32 i = 0; i < mMountList.size(); i++ ) |
| 1000 | { |
| 1001 | FileSystemChangeNotifier *notifier = mMountList[i].fileSystem->getChangeNotifier(); |
| 1002 | |
| 1003 | if ( notifier != NULL && notifier->isNotifying() ) |
| 1004 | notifier->stopNotifier(); |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | bool MountSystem::createPath(const Path& path) |
| 1009 | { |
no test coverage detected