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:
cxl 2019-07-19 07:10:48 +00:00
parent f84d9bc4e3
commit 090e1839ca

View file

@ -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";