Update of /cvsroot/perfparse/_perfparse/perfparse
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6960/perfparse
Modified Files:
storage.c
Log Message:
start convert db_purge for new schema
Index: storage.c
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/perfparse/storage.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** storage.c 6 Jun 2007 09:53:14 -0000 1.5
--- storage.c 30 Jul 2007 22:32:06 -0000 1.6
***************
*** 287,293 ****
for(this=storage_modules; this; this = this->next) {
pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed : periodic cleanup of storage modules\n"));
! if(this->module->enabled && this->module->periodic_cleanup) this->module->periodic_cleanup(this->module);
}
! pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed : periodic cleanup finished\n"));
if(config_get_value_as_boolean(CONFIG_ITEM_ID_DAEMONIZE)) {
exit(EXIT_SUCCESS);
--- 287,298 ----
for(this=storage_modules; this; this = this->next) {
pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed : periodic cleanup of storage modules\n"));
! if(this->module->enabled && this->module->periodic_cleanup) {
! pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed : periodic cleanup of storage module %s\n"));
! this->module->periodic_cleanup(this->module);}
! else {
! pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed : periodic cleanup of storage module %s not supported or module disabled\n"),this->module->id);
! }
}
! pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed : periodic cleanup finished\n"),this->module->id);
if(config_get_value_as_boolean(CONFIG_ITEM_ID_DAEMONIZE)) {
exit(EXIT_SUCCESS);
|