~ubuntu-branches/debian/experimental/nuitka/experimental

« back to all changes in this revision

Viewing changes to nuitka/build/static_src/win32_ucontext_src/fibers_win32.cpp

  • Committer: Package Import Robot
  • Author(s): Kay Hayen
  • Date: 2014-10-05 19:28:20 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20141005192820-s06oca9rty517iy8
Tags: 0.5.5+ds-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    to->fiber = NULL;
30
30
}
31
31
 
32
 
int _prepareFiber( Fiber *to, void *code, intptr_t arg )
 
32
int _prepareFiber( Fiber *to, void *code, uintptr_t arg )
33
33
{
34
34
    to->fiber = CreateFiber( STACK_SIZE, (LPFIBER_START_ROUTINE)code, (LPVOID)arg );
35
35
    return to->fiber != NULL ? 0 : 1;