From 394a1d6775ef84748abe3815a51ecf450294227c Mon Sep 17 00:00:00 2001 From: Eric Hein Date: Thu, 27 Jun 2019 10:28:47 -0400 Subject: [PATCH] Set default region of interest for pointer chase --- pointer_chase.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pointer_chase.c b/pointer_chase.c index 12526c5..f47b16c 100644 --- a/pointer_chase.c +++ b/pointer_chase.c @@ -499,6 +499,8 @@ int main(int argc, char** argv) const char* active_region = getenv("HOOKS_ACTIVE_REGION"); if (active_region != NULL) { hooks_set_active_region(active_region); + } else { + hooks_set_active_region("chase_pointers"); } pointer_chase_args args = parse_args(argc, argv);