Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlconfig.c

    r3aa0522 r1b1cd2c  
    582582}
    583583
     584void owl_perlconfig_mainloop(owl_timer *t, void *data)
     585{
     586  dSP;
     587  if (!owl_perlconfig_is_function("BarnOwl::Hooks::_mainloop_hook"))
     588    return;
     589  PUSHMARK(SP) ;
     590  call_pv("BarnOwl::Hooks::_mainloop_hook", G_DISCARD|G_EVAL);
     591  if(SvTRUE(ERRSV)) {
     592    owl_function_error("%s", SvPV_nolen(ERRSV));
     593  }
     594  return;
     595}
     596
    584597void owl_perlconfig_io_dispatch(const owl_io_dispatch *d, void *data)
    585598{
Note: See TracChangeset for help on using the changeset viewer.