lua-users home
lua-l archive

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


Ignacio Burgueño wrote:
> On Fri, Dec 23, 2011 at 6:43 PM, Mike Pall <mikelu-1112@mike.de> wrote:
> > The problem is that a FFI callback cannot safely be called from a
> > C function which is itself called via the FFI from JIT-compiled
> > code. In your case this is the call to MsgWaitForMultipleObjects.
> 
> Sorry Mike. I might be missing something obvious but what would be the call
> sequence in this case? I can't see any callbacks in the code Duncan sent.

MsgWaitForMultipleObjects
  ==>
TestWindowClass
  ==> *lpfnWndProc
Lua function at line 142

--Mike