diff --git a/modules/console.cc b/modules/console.cc index d55ccaf29..7d3a3ac75 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -1542,6 +1542,8 @@ console_cmd__ctx__list(opt &out, const string_view &line) << " " << "STATE" << " " + << "NOTES" + << " " << "YIELDS" << " " << "CYCLE COUNT" @@ -1565,12 +1567,17 @@ console_cmd__ctx__list(opt &out, const string_view &line) << (started(ctx)? 'S' : '-') << (running(ctx)? 'R' : '-') << (waiting(ctx)? 'W' : '-') + << (notes(ctx)? 'N' : '-') << (finished(ctx)? 'F' : '-') << (interruptible(ctx)? '-' : 'N') << (interruption(ctx)? 'I' : '-') << (termination(ctx)? 'T' : '-') ; + out << " " + << std::setw(5) << std::right << notes(ctx) + << " "; + out << " " << std::setw(8) << std::right << yields(ctx) << " ";