ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcoro/coro.c
(Generate patch)

Comparing libcoro/coro.c (file contents):
Revision 1.70 by root, Fri Nov 18 05:45:00 2016 UTC vs.
Revision 1.71 by root, Fri Nov 18 06:22:04 2016 UTC

88 volatile void *arg = coro_init_arg; 88 volatile void *arg = coro_init_arg;
89 89
90 coro_transfer (new_coro, create_coro); 90 coro_transfer (new_coro, create_coro);
91 91
92#if __GCC_HAVE_DWARF2_CFI_ASM && __amd64 92#if __GCC_HAVE_DWARF2_CFI_ASM && __amd64
93 asm (".cfi_startproc"); 93 /*asm (".cfi_startproc");*/
94 asm (".cfi_undefined rip"); 94 /*asm (".cfi_undefined rip");*/
95#endif 95#endif
96 96
97 func ((void *)arg); 97 func ((void *)arg);
98 98
99#if __GCC_HAVE_DWARF2_CFI_ASM && __amd64 99#if __GCC_HAVE_DWARF2_CFI_ASM && __amd64
100 asm (".cfi_endproc"); 100 /*asm (".cfi_endproc");*/
101#endif 101#endif
102 102
103 /* the new coro returned. bad. just abort() for now */ 103 /* the new coro returned. bad. just abort() for now */
104 abort (); 104 abort ();
105} 105}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines