Skip to content

Commit

Permalink
i#6342 func trace opt: Make symbol skipping visible (#6365)
Browse files Browse the repository at this point in the history
Makes the function trace symbol skipping for a module considered a
client or DR more visible to more easily diagnose missing function
tracing.

Issue: #6342
  • Loading branch information
derekbruening authored Oct 13, 2023
1 parent a28ad20 commit 0c6476f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/drcachesim/tracer/func_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ instru_funcs_module_load(void *drcontext, const module_data_t *mod, bool loaded)
// on Windows and the fewer libs we check the better (i#6342), unless we're
// statically linked (when the app itself might be excluded here).
if (dr_memory_is_dr_internal(mod->start) || dr_memory_is_in_client(mod->start)) {
NOTIFY(3, "Not looking for symbols in DR/client library %s\n",
NOTIFY(1, "Not looking for symbols in DR/client library %s\n",
get_module_basename(mod));
return;
}
Expand Down

0 comments on commit 0c6476f

Please sign in to comment.