From 342ef74382a34ac722ff0047008a0835ffe0d321 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 10 Apr 2019 23:34:30 -0700 Subject: [PATCH] modules/console: Tweak the state flags characters. --- modules/console.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index e55f7bd9d..e8ea4db85 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -1573,14 +1573,14 @@ console_cmd__ctx__list(opt &out, const string_view &line) const auto &ctx{*ctxp}; out << std::setw(5) << std::right << id(ctx); out << " " - << (started(ctx)? 'S' : '-') - << (running(ctx)? 'R' : '-') - << (waiting(ctx)? 'W' : '-') - << (notes(ctx)? 'N' : '-') + << (started(ctx)? 'A' : '-') << (finished(ctx)? 'F' : '-') - << (interruptible(ctx)? '-' : 'N') - << (interruption(ctx)? 'I' : '-') << (termination(ctx)? 'T' : '-') + << (interruptible(ctx)? '-' : 'N') + << (waiting(ctx)? 'S' : '-') + << (!running(ctx) && notes(ctx)? 'Q' : '-') + << (interruption(ctx)? 'I' : '-') + << (running(ctx)? 'R' : '-') ; out << " "