Mod Cplusplus CVS committal
Author : johnksterling
Project : mod_cplusplus
Module : example
Dir : mod_cplusplus/example/handler
Modified Files:
test_handler.cpp
Log Message:
rework the cleanups so the modules are properly deleted before the kid process shuts down. Requested by William F. Dowling <wil...@th...>
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/handler/test_handler.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- test_handler.cpp 15 Aug 2003 22:46:02 -0000 1.12
+++ test_handler.cpp 24 May 2004 01:33:54 -0000 1.13
@@ -5,10 +5,14 @@
: ApacheHandler()
{
mHits = 0;
+ ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, NULL,
+ "constructing mod_cplusplus handler.");
}
TestHandler::~TestHandler()
{
+ ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, NULL,
+ "destroying mod_cplusplus handler.");
}
int TestHandler::handler(ApacheRequestRec *pRequest)
|