lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi, Samuel,

You seem to be running under Windows, can you give me the complete info (what Lua executable you are using, if you compiled it yourself and with which compiler/C runtime; same for the LuaProfiler DLL). This has all the signs of a runtime mismatch.

--
Fabio Mascarenhas

On Mon, May 19, 2008 at 4:26 AM, Shmuel Zeigerman <shmuz@actcom.co.il> wrote:
The 3-rd test case:

 require"profiler"
 for k=1,1000 do
   print(k)
   profiler.start("log1.txt")
   profiler.stop()
 end

It crashes after 510 is printed.

--
Shmuel