| 984 | } |
| 985 | |
| 986 | void MountSystem::startFileChangeNotifications() |
| 987 | { |
| 988 | for ( U32 i = 0; i < mMountList.size(); i++ ) |
| 989 | { |
| 990 | FileSystemChangeNotifier *notifier = mMountList[i].fileSystem->getChangeNotifier(); |
| 991 | |
| 992 | if ( notifier != NULL && !notifier->isNotifying() ) |
| 993 | notifier->startNotifier(); |
| 994 | } |
| 995 | } |
| 996 | |
| 997 | void MountSystem::stopFileChangeNotifications() |
| 998 | { |
no test coverage detected