Skip to content

Commit

Permalink
FIX: excluded address
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacarte committed Jul 18, 2023
1 parent fb6d859 commit bd2d209
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions host_based/tracer/pintool/tracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ BOOL ExcludedAddress(ADDRINT ip)
// Wathever is beyond 0x7000
// 00000000000
// 0x7ffe6e1f0935
return ip >= 0x700000000000
return ip >= 0x700000000000;
}

bool cannot_trace() {
Expand Down Expand Up @@ -189,7 +189,7 @@ VOID Fini(INT32 code, VOID* v)
TraceFile.close();
// Printout the hash of the file, call system("sha256sum ")
cerr << "[PINTOOL] Finishing program\n";
system("sha256sum " + KnobOutputFile.Value());
// system("sha256sum " + KnobOutputFile.Value());
}


Expand Down

0 comments on commit bd2d209

Please sign in to comment.