| 725 | } |
| 726 | |
| 727 | void Osiris_ForceUnloadModules(void) { |
| 728 | for (int j = 0; j < MAX_LOADED_MODULES; j++) { |
| 729 | if (OSIRIS_loaded_modules[j].flags & OSIMF_INUSE) { |
| 730 | Osiris_FreeModule(j); |
| 731 | } |
| 732 | } |
| 733 | } |
| 734 | |
| 735 | // Osiris_DumpLoadedObjects |
| 736 | // |
nothing calls this directly
no test coverage detected