/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/usr/errl/runtime/rt_vfs.C $ */ /* */ /* IBM CONFIDENTIAL */ /* */ /* COPYRIGHT International Business Machines Corp. 2013 */ /* */ /* p1 */ /* */ /* Object Code Only (OCO) source materials */ /* Licensed Internal Code Source Materials */ /* IBM HostBoot Licensed Internal Code */ /* */ /* The source code for this program is not published or otherwise */ /* divested of its trade secrets, irrespective of what has been */ /* deposited with the U.S. Copyright Office. */ /* */ /* Origin: 30 */ /* */ /* IBM_PROLOG_END_TAG */ #include #include #include #include #include using namespace ERRORLOG; namespace VFS { void find_test_modules(std::vector & o_list) { o_list.clear(); for(VfsSystemModule* vfsItr = &VFS_MODULES[0]; '\0' != vfsItr->module[0]; vfsItr++) { if (0 == memcmp(vfsItr->module, "libtest", 7)) { if (NULL != vfsItr->start) { o_list.push_back(vfsItr->module); } } } } errlHndl_t module_address(const char * i_name, const char *& o_address, size_t & o_size) { errlHndl_t l_errl = NULL; VfsSystemModule* entry = vfs_find_module(&VFS_MODULES[0], i_name); if ((NULL == entry) || (entry->text != entry->data)) { /*@ errorlog tag * @errortype ERRL_SEV_INFORMATIONAL * @moduleid VFS_RT_MODULE_ID * @reasoncode VFS_INVALID_DATA_MODULE * @userdata1 0 * @userdata2 0 * * @devdesc Module is not a data module * */ l_errl = new ErrlEntry( ERRORLOG::ERRL_SEV_INFORMATIONAL, // severity VFS::VFS_RT_MODULE_ID, // moduleid VFS::VFS_INVALID_DATA_MODULE, // reason Code 0, 0); ErrlUserDetailsString(i_name).addToLog(l_errl); } else { o_address = (const char *)entry->data; o_size = entry->byte_count; } return l_errl; } }