Skip to content
Snippets Groups Projects
Commit 261b863b authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

Merge branch 'master' of git.zephyr-software.com:allnp/zafl_umbrella

parents f049de68 16be45e2
No related branches found
No related tags found
No related merge requests found
Pipeline #3447 failed
......@@ -32,6 +32,7 @@ usage()
echo " -c, --enable-breakup-critical-edges Breakup critical edges"
echo " -C, --disable-breakup-critical-edges Do not breakup critical edges (default)"
echo " -f, --fork-server-only Fork server only"
echo " -F, --disable-fork-server No fork server"
echo " -m, --enable-fixed-map [<address>] Use fixed address for tracing map (<address> must be hex and page-aligned, e.g., 0x10000)"
echo " -M, --disable-fixed-map Disable fixed address tracing map"
echo " -i, --enable-floating-instrumentation Select best instrumentation point within basic block (default)"
......@@ -187,6 +188,10 @@ parse_args()
log_warning "Fork Server Only mode: no block-level instrumentation will be performed"
shift
;;
-F | --disable-fork-server)
zax_opt=" $zax_opt -o zax:\"-F\" "
shift
;;
-m | --enable-fixed-map)
shift
case $1 in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment