| 789 | } |
| 790 | |
| 791 | FileSystemRef MountSystem::unmount(String root) |
| 792 | { |
| 793 | FileSystemRef first = _removeMountFromList(root); |
| 794 | |
| 795 | // remove remaining FSes on this root |
| 796 | while (!_removeMountFromList(root).isNull()) |
| 797 | ; |
| 798 | |
| 799 | return first; |
| 800 | } |
| 801 | |
| 802 | bool MountSystem::unmount(FileSystemRef fs) |
| 803 | { |
no test coverage detected