mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Cover ST Coroutine and time unit. 3.0.48
This commit is contained in:
parent
f2b4bc7110
commit
a9a720e32f
12 changed files with 345 additions and 9 deletions
|
@ -83,9 +83,13 @@ std::string SrsCplxError::description() {
|
|||
while (next) {
|
||||
ss << "thread #" << next->cid << ": "
|
||||
<< next->func << "() [" << next->file << ":" << next->line << "]"
|
||||
<< "[errno=" << next->rerrno << "]"
|
||||
<< endl;
|
||||
<< "[errno=" << next->rerrno << "]";
|
||||
|
||||
next = next->wrapped;
|
||||
|
||||
if (next) {
|
||||
ss << endl;
|
||||
}
|
||||
}
|
||||
|
||||
desc = ss.str();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue