Warn when importing an unimplemented kernel function
This commit is contained in:
parent
8cb8098a6b
commit
03ffb20a43
|
@ -417,6 +417,8 @@ bool XexModule::SetupLibraryImports(const char* name,
|
||||||
(FunctionInfo::ExternHandler)kernel_export->function_data.shim;
|
(FunctionInfo::ExternHandler)kernel_export->function_data.shim;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
XELOGW("WARNING: Imported kernel function %s is unimplemented!",
|
||||||
|
import_name.GetString());
|
||||||
handler = UndefinedImport;
|
handler = UndefinedImport;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue