Changeset a01ed7c for perlconfig.c
- Timestamp:
- Oct 27, 2009, 2:15:08 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 7ca5d3e
- Parents:
- e7f5970 (diff), f1a2736 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
perlconfig.c
re7f5970 ra01ed7c 542 542 } 543 543 544 void owl_perlconfig_ dispatch_free(owl_dispatch *d)544 void owl_perlconfig_io_dispatch_destroy(const owl_io_dispatch *d) 545 545 { 546 546 SvREFCNT_dec(d->data); 547 owl_free(d);548 547 } 549 548 … … 593 592 } 594 593 595 void owl_perlconfig_ dispatch(owl_dispatch *d)596 { 597 SV *cb = d ->data;594 void owl_perlconfig_io_dispatch(const owl_io_dispatch *d, void *data) 595 { 596 SV *cb = data; 598 597 dSP; 599 598 if(cb == NULL) { … … 607 606 PUSHMARK(SP); 608 607 PUTBACK; 609 608 610 609 call_sv(cb, G_DISCARD|G_KEEPERR|G_EVAL); 611 610
Note: See TracChangeset
for help on using the changeset viewer.