Skip to content
Snippets Groups Projects
Commit 371ff589 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[Context] Include fiber in printTo() output

parent 6c86ab0a
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,9 @@ void Context::printTo(std::ostream& strm, bool withPtr) const {
if (withPtr) {
strm << "(" << this << ") ";
}
strm << "[tos=" << tos;
strm << "[fiber=" << currentFiber
<< ", tos=" << tos;
strm << ", bos=" << &context
<< ", saved-sp=" << savedStackpointer
<< ", *saved-sp=" << *static_cast<void**>(savedStackpointer);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment