mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
ide: PDB fixed all threads backtrace thread ID
git-svn-id: svn://ultimatepp.org/upp/trunk@13500 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
f84d9bc4e3
commit
090e1839ca
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ void Pdb::CopyStackAll()
|
|||
for(int i = 0; i < threads.GetCount(); i++) {
|
||||
int thid = threads.GetKey(i);
|
||||
s << "----------------------------------\r\n"
|
||||
<< "Thread ID: " << FormatIntHex(Format("0x%x", thid)) << "\r\n\r\n";
|
||||
<< "Thread ID: " << Format("0x%x", thid) << "\r\n\r\n";
|
||||
for(const auto& f : Backtrace(threads[i]))
|
||||
s << f.text << "\r\n";
|
||||
s << "\r\n";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue