<div dir="ltr">I've seen this asked by Ed before, but hadn't seen it answered: Is there a reason for the single single quote in the default thread-format?<div><br></div><div><div style="font-family:arial,sans-serif;font-size:13px">

(lldb) <span class="" style="background-color:rgb(255,255,204)">thread</span> list<br></div></div><div style="font-family:arial,sans-serif;font-size:13px"><div>Process 29603 stopped</div><div>* <span class="" style="background-color:rgb(255,255,204)">thread</span> #1: tid = 29603, 0x000000000040113f blah`main(argc=1, argv=0x00007fff71d34f18) + 495 at blah.cpp:71, name = 'mainthrd, stop reason = breakpoint 2.1</div>

<div>  <span class="" style="background-color:rgb(255,255,204)">thread</span> #2: tid = 29766, 0x00007f282ba7084d libc.so.6`__nanosleep + 45 at syscall-template.S:82, name = 'thread_0</div><div>  <span class="" style="background-color:rgb(255,255,204)">thread</span> #3: tid = 29767, 0x00007f282ba7084d libc.so.6`__nanosleep + 45 at syscall-template.S:82, name = 'thread_1</div>

<div><br></div><div>It's defined here in Debugger.cpp:</div><div><br></div><div><div> 102 #define DEFAULT_THREAD_FORMAT "thread #${thread.index}: tid = ${<a href="http://thread.id">thread.id</a>}"\</div><div>

 103     "{, ${frame.pc}}"\</div><div> 104     MODULE_WITH_FUNC\</div><div> 105     FILE_AND_LINE\</div><div> 106     "{, name = '${<a href="http://thread.name">thread.name</a>}}"\</div><div> 107     "{, queue = '${thread.queue}}"\</div>

<div> 108     "{, stop reason = ${thread.stop-reason}}"\</div><div> 109     "{\\nReturn value: ${thread.return-value}}"\</div><div> 110     "\\n"</div></div><div><br></div><div><div>(lldb) settings show <span class="" style="background-color:rgb(255,255,204)">thread</span>-<span class="" style="background-color:rgb(255,255,204)">format</span></div>

<div><span class="" style="background-color:rgb(255,255,204)">thread</span>-<span class="" style="background-color:rgb(255,255,204)">format</span> (string) = "<span class="" style="background-color:rgb(255,255,204)">thread</span> #${<span class="" style="background-color:rgb(255,255,204)">thread</span>.index}: tid = ${<a href="http://thread.id/" target="_blank"><span class="" style="background-color:rgb(255,255,204);color:rgb(34,34,34)">thread</span>.id</a>}{, ${frame.pc}}{ ${module.file.basename}{`${function.name-with-args}${function.pc-offset}}}{ at ${line.file.basename}:${line.number}}{, name = '${<a href="http://thread.name/" target="_blank"><span class="" style="background-color:rgb(255,255,204);color:rgb(34,34,34)">thread</span>.name</a>}}{, queue = '${<span class="" style="background-color:rgb(255,255,204)">thread</span>.queue}}{, stop reason = ${<span class="" style="background-color:rgb(255,255,204)">thread</span>.stop-reason}}{\nReturn value: ${<span class="" style="background-color:rgb(255,255,204)">thread</span>.return-value}}\n"</div>

</div><div><br></div><div>I'm assuming this isn't deliberate and we can add the missing quote? Hopefully? :)</div><div><br></div><div>Thanks!<br></div><div> -Mike</div></div></div>