mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-20 08:03:56 +00:00
committed by
Christian Helmuth
parent
8b7f959451
commit
7000fb8642
@ -35,9 +35,12 @@ struct Genode::Gdb_checksummed_output : Output
|
||||
Output &_output;
|
||||
uint8_t _accumulated = 0;
|
||||
|
||||
Gdb_checksummed_output(Output &output) : _output(output)
|
||||
Gdb_checksummed_output(Output &output, bool notification) : _output(output)
|
||||
{
|
||||
print(_output, "$");
|
||||
if (notification)
|
||||
print(_output, "%");
|
||||
else
|
||||
print(_output, "$");
|
||||
}
|
||||
|
||||
~Gdb_checksummed_output()
|
||||
|
Reference in New Issue
Block a user