| 1171 | } |
| 1172 | |
| 1173 | void register_dyn_module(char *fullname, void * handle) { |
| 1174 | std::string fname = fullname; |
| 1175 | if (dyn_modules == NULL) |
| 1176 | dyn_modules = new std::map<std::string, void *>(); |
| 1177 | dyn_modules->insert(std::pair<std::string, void *>(fname, handle)); |
| 1178 | } |
| 1179 | |
| 1180 | void close_all_dyn_modules() { |
| 1181 | for (std::map<std::string, void *>::iterator it = dyn_modules->begin(); |
no test coverage detected