MCPcopy Create free account
hub / github.com/F-Stack/f-stack / clear_module_info

Function clear_module_info

freebsd/arm/arm/unwind.c:161–166  ·  view source on GitHub ↗

* Clear the info in an existing module_info entry on the list. The * module_start/end addresses are set to values that cannot match any real * memory address. The entry remains on the list, but will be ignored until it * is populated with new data. */

Source from the content-addressed store, hash-verified

159 * is populated with new data.
160 */
161static void
162clear_module_info(struct module_info *info)
163{
164 info->module_start = UINTPTR_MAX;
165 info->module_end = 0;
166}
167
168/*
169 * Populate an existing module_info entry (which is already on the list) with

Callers 2

create_module_infoFunction · 0.85
unwind_module_unloadedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected