comparison src/luan/modules/http/tools/Luan_threads.luan @ 1401:ef1620aa99cb

fix gc issues
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 16 Sep 2019 22:51:41 -0400
parents b84f60ebe196
children
comparison
equal deleted inserted replaced
1400:221eedb0f54e 1401:ef1620aa99cb
40 %> 40 %>
41 <p><%=thread.string%> <%=thread.state%> 41 <p><%=thread.string%> <%=thread.state%>
42 <ul> 42 <ul>
43 <% 43 <%
44 for i, el in Luan.ipairs(luan_trace) do 44 for i, el in Luan.ipairs(luan_trace) do
45 local line = LuanException.toString(el); 45 local line = LuanException.toLuanString(el);
46 %><li><%=line%></li><% 46 %><li><%=line%></li><%
47 end 47 end
48 %> 48 %>
49 </ul></p> 49 </ul></p>
50 <% 50 <%