ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Async-Interrupt/Interrupt.xs
(Generate patch)

Comparing Async-Interrupt/Interrupt.xs (file contents):
Revision 1.20 by root, Fri Apr 11 04:24:47 2014 UTC vs.
Revision 1.21 by root, Tue Apr 17 19:24:32 2018 UTC

490 490
491void 491void
492new (const char *klass) 492new (const char *klass)
493 PPCODE: 493 PPCODE:
494{ 494{
495 s_epipe *epp; 495 s_epipe *epp;
496 496
497 Newz (0, epp, 1, s_epipe); 497 Newz (0, epp, 1, s_epipe);
498 XPUSHs (sv_setref_iv (sv_newmortal (), klass, PTR2IV (epp))); 498 XPUSHs (sv_setref_iv (sv_newmortal (), klass, PTR2IV (epp)));
499 499
500 if (s_epipe_new (epp) < 0) 500 if (s_epipe_new (epp) < 0)
543 543
544void 544void
545s_epipe_wait (s_epipe *epp) 545s_epipe_wait (s_epipe *epp)
546 546
547void 547void
548s_epipe_renew (s_epipe *epp)
549
550void
548DESTROY (s_epipe *epp) 551DESTROY (s_epipe *epp)
549 CODE: 552 CODE:
550 s_epipe_destroy (epp); 553 s_epipe_destroy (epp);
551 554

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines