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

Function linker_debug_lookup

freebsd/kern/kern_linker.c:905–915  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

903 */
904#ifdef DDB
905static int
906linker_debug_lookup(const char *symstr, c_linker_sym_t *sym)
907{
908 linker_file_t lf;
909
910 TAILQ_FOREACH(lf, &linker_files, link) {
911 if (LINKER_LOOKUP_SYMBOL(lf, symstr, sym) == 0)
912 return (0);
913 }
914 return (ENOENT);
915}
916#endif
917
918static int

Callers 1

linker_ddb_lookupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected