Skip to content

Commit

Permalink
Run clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
otargowski committed Apr 14, 2024
1 parent 8875a68 commit 76ca532
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tracer/TraceExecutor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ std::tuple<TraceAction, int> TraceExecutor::handleTraceeSignal(
// Mask is shifted by one because the lowest bit of SigCgt mask
// corresponds to signal 1, not 0.
uint64_t caughtSignals =
procfs::readProcFS(tracee.getPid(), procfs::Field::SIG_CGT) << 1;
procfs::readProcFS(tracee.getPid(), procfs::Field::SIG_CGT)
<< 1;
caughtSignals |= IGNORED_SIGNALS;
if ((caughtSignals & (1 << signal)) == 0U) {
outputBuilder_->setKillSignal(signal);
Expand Down

0 comments on commit 76ca532

Please sign in to comment.