ecore: fix build with setjmp.

This commit is contained in:
Cedric BAIL 2013-03-04 10:03:59 +09:00
parent bc1ec328d3
commit 05f7761d5f
1 changed files with 2 additions and 2 deletions

View File

@ -117,8 +117,8 @@ _ecore_coroutine_setjmp(Ecore_Coroutine *coro)
/* 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);
coro->context->env[0].__jmpbuf[6] = ((uintptr_t)(&coro->stack));
coro->context->env[0].__jmpbuf[7] = ((uintptr_t)_ecore_coroutine_entry_point);
}
# endif
#endif