From: <jgr...@us...> - 2003-02-24 23:09:21
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv26589 Modified Files: popfile.pl Log Message: Major update to the history caching code that makes POPFile History a hell of a lot faster by being a real cache and not the lame one it was before; Stan, this might have undone your last & fix check in because of the size of changes I was making; I fixed a nasty bug where we were leaking file handles in class files when reclassifying or undoing. Index: popfile.pl =================================================================== RCS file: /cvsroot/popfile/engine/popfile.pl,v retrieving revision 1.202 retrieving revision 1.203 diff -C2 -d -r1.202 -r1.203 *** popfile.pl 21 Feb 2003 18:36:23 -0000 1.202 --- popfile.pl 24 Feb 2003 23:08:45 -0000 1.203 *************** *** 313,316 **** --- 313,317 ---- foreach my $name (keys %{$components{$type}}) { print "{$name} "; + flush STDOUT; if ( $components{$type}{$name}->initialize() == 0 ) { die "Failed to start while initializing the $name module"; *************** *** 336,339 **** --- 337,341 ---- foreach my $name (keys %{$components{$type}}) { print "{$name} "; + flush STDOUT; if ( $components{$type}{$name}->start() == 0 ) { die "Failed to start while starting the $name module"; |