Hello,

static void
_ecore_coroutine_setjmp(Ecore_Coroutine *coro)
{
   setjmp(coro->context);

   /* The idea of this trick come from libcoroutine */
   /* __jmpbuf[6] == stack pointer */
   /* __jmpbuf[7] == program counter */
   self->env[0].__jmpbuf[6] = ((uintptr_t)(&coro->stack));
   self->env[0].__jmpbuf[7] =
   ((uintptr_t)_ecore_coroutine_entry_point); 
}

lib/ecore/ecore_coroutine.c: In function '_ecore_coroutine_setjmp':
lib/ecore/ecore_coroutine.c:120:4: error: 'self' undeclared (first use
in this function)

I didn't find self variable in the code. What is the problem?

Compile system: Android

BTW: Did a workaround by comment all code that doesn't compile in that
file...

regards
        Andreas


-- 
Technical Blog <http://andreasvolz.wordpress.com/>

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to