Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove non-ASCII characters #58

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dyninstAPI/wrapFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ int main(int argc, char** argv) {

std::vector<st::Symbol*> syms;
symtab->findSymbol(syms, orig_func,
st::Symbol::ST_UNKNOWN, // Dont specify type
st::Symbol::ST_UNKNOWN, // Don't specify type
st::NameType::prettyName, // Look for demangled symbol name
false, // Not regular expression
false, // Dont check case
false, // Don't check case
true); // Include undefined symbols

if(syms.size() != 1) {
Expand Down
2 changes: 1 addition & 1 deletion instrumentMemoryAccess/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is similar to Memory Access Counter, but
**all** functions in the binary are instrumented here.

This example illustrates how to use Dyninst to iterate over a
functions control flow graph and inspect instructions. These are steps
function's control flow graph and inspect instructions. These are steps
that would usually be part of a larger data flow or control flow
analysis. Specifically, this example collects every basic block in a
function, iterates over them, and counts the number of instructions that
Expand Down
2 changes: 1 addition & 1 deletion memoryAccessCounter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This example is similar to Instrument Memory Access, but only one function
is instrumented here.

This example illustrates how to use Dyninst to iterate over a
functions control flow graph and inspect instructions. These are steps
function's control flow graph and inspect instructions. These are steps
that would usually be part of a larger data flow or control flow
analysis. Specifically, this example collects every basic block in a
function, iterates over them, and counts the number of instructions that
Expand Down
Loading