blob: c5f12aa41714dfa6cf74eb6370ddefbccd54a3b7 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/developer/debug/zxdb/console/commands/verb_stderr.h"
#include "src/developer/debug/zxdb/console/commands/verb_stdout.h"
#include "src/developer/debug/zxdb/console/verbs.h"
namespace zxdb {
namespace {
const char kStderrShortHelp[] = "stderr: Show process error output.";
Err RunVerbStderr(ConsoleContext* context, const Command& cmd) {
return RunVerbStdio(Verb::kStderr, cmd, context);
}
} // namespace
VerbRecord GetStderrVerbRecord() {
return VerbRecord(&RunVerbStderr, {"stderr"}, kStderrShortHelp, kStdioHelp,
CommandGroup::kProcess);
}
} // namespace zxdb