Skip to content

Commit

Permalink
i#6822 unsched: Add missing closing '>' to drmemtrace view tool
Browse files Browse the repository at this point in the history
Adds a missing closing '>' to the drmemtrace view tool's output for a
syscall that makes a thread become unscheduled.

Issue: #6822
  • Loading branch information
derekbruening committed Jul 15, 2024
1 parent 8742c85 commit f7858ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/drcachesim/tools/view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ view_t::parallel_shard_memref(void *shard_data, const memref_t &memref)
<< ">\n";
break;
case TRACE_MARKER_TYPE_SYSCALL_UNSCHEDULE:
std::cerr << "<marker: current thread going unscheduled\n";
std::cerr << "<marker: current thread going unscheduled>\n";
break;
case TRACE_MARKER_TYPE_SYSCALL_SCHEDULE:
std::cerr << "<marker: re-schedule thread " << memref.marker.marker_value
Expand Down

0 comments on commit f7858ff

Please sign in to comment.