Skip to content

Commit

Permalink
i#7084: Change handle_rseq_abort_marker parameter name interrupted to…
Browse files Browse the repository at this point in the history
… rseq_aborted. (#7086)

raw2trace_t::handle_rseq_abort_marker() uses different names of the last
parameter. It's interrupted in raw2trace.h
but it is rseq_aborted in raw2trace.cpp.

Change the name from interrupted to rseq_aborted to be consistent with
raw2trace.cpp.

The inconsistency was introduced by PR #7058.

Fixes: #7084
  • Loading branch information
ivankyluk authored Nov 14, 2024
1 parent 9388e31 commit 7491c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/drcachesim/tracer/raw2trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -1510,7 +1510,7 @@ class raw2trace_t {
bool
handle_rseq_abort_marker(raw2trace_thread_data_t *tdata,
DR_PARAM_INOUT trace_entry_t **buf_in, uint64_t cur_pc,
uint64_t cur_offs, DR_PARAM_OUT bool *interrupted);
uint64_t cur_offs, DR_PARAM_OUT bool *rseq_aborted);

bool
get_marker_value(raw2trace_thread_data_t *tdata,
Expand Down

0 comments on commit 7491c9c

Please sign in to comment.