LLNL / Caliper

Caliper is an instrumentation and performance profiling library
http://software.llnl.gov/Caliper/
BSD 3-Clause "New" or "Revised" License
343 stars 63 forks source link

ARM compile of caliper issue: incorrect unwind argument #559

Closed tonycurtis closed 3 months ago

tonycurtis commented 3 months ago

src/caliper/caliper-git/src/services/callpath/Callpath.cpp

     73             #ifdef __aarch64__
     74             unw_getcontext(unw_ctx);
     75             #else
     76             unw_getcontext(&unw_ctx);
     77             #endif

This should be passed by reference no matter the architecture?