Log4cxx日志语句挂起

时间:2014-04-30 12:06:40

标签: c++ multithreading log4cxx

我们有一个独立的VC ++应用程序,我们使用log4cxx0.10.0版本添加了日志记录。 应用程序将启动一个线程(一些耗时的操作),如果它需要超过阈值时间,那么主线程将使用TerminateThread方法终止该线程。子线程函数也有一些日志打印.Log4CXX配置了1 MB大小的5个备份副本的滚动文件appender。在大多数情况下,日志工作正常。但是在某些情况下,主线程日志记录函数调用在杀死子线程后挂起,因此整个应用程序处于挂起状态。 该应用程序的后续实例也悬而未决。我们采用了应用程序的完整故障转储并使用WinDbg进行了分析。

这是应用程序的调用堆栈

**00 ntdll!NtWaitForSingleObject+0xa
01 ntdll!RtlpWaitOnCriticalSection+0xe8
02 ntdll!RtlEnterCriticalSection+0xd1
03 log4cxx!log4cxx::filter::DenyAllFilter::decide+0x194
04 log4cxx!log4cxx::helpers::synchronized::synchronized+0x31
05 log4cxx!log4cxx::Logger::callAppenders+0x81
06 log4cxx!log4cxx::Logger::forcedLog+0xe5**
07 Test!CXX_LOG(int LOG_TYPE = 0n2, char * format = 0x00000001`3f2a2ad8 "Main thread pint...")+0x463 [d:\test\saf\test.cpp @ 2360]
08 test!TestFunction(int argc = 0n3, char ** argv = 0x00000001`3f2ae880, int level = 0n1)+0x586 [d:\test\saf\test.cpp @ 1634]
09 test!main(int argc = 0n4, char ** argv = 0x00000000`00282920)+0x1820 [d:\test\saf\test.cpp @ 2309]
0a test!__tmainCRTStartup(void)+0x13b [f:\dd\vctools\crt_bld\self_64_amd64\crt\src\crt0.c @ 278]
0b kernel32!BaseThreadInitThunk+0xd
0c ntdll!RtlUserThreadStart+0x1d

以及随后的应用程序挂起以锁定文件并调用实例的堆栈,如下所示

**ntdll!ZwLockFile+0xa
KERNELBASE!LockFileEx+0xb2
kernel32!LockFileEx+0x1b
log4cxx!log4cxx::filter::DenyAllFilter::decide+0x2a89
log4cxx!log4cxx::helpers::DatagramPacket::setData+0x559c
log4cxx!log4cxx::helpers::FileOutputStream::write+0x82
log4cxx!log4cxx::rolling::RollingFileAppenderSkeleton::getTriggeringPolicy+0x1ca
log4cxx!log4cxx::helpers::OutputStreamWriter::write+0xbe
log4cxx!log4cxx::WriterAppender::subAppend+0x7c
log4cxx!log4cxx::rolling::RollingFileAppenderSkeleton::subAppend+0xd0
log4cxx!log4cxx::WriterAppender::append+0x31
log4cxx!log4cxx::AppenderSkeleton::doAppend+0x293
log4cxx!log4cxx::helpers::AppenderAttachableImpl::appendLoopOnAppenders+0x40
log4cxx!log4cxx::Logger::callAppenders+0xa3
log4cxx!log4cxx::Logger::forcedLog+0xe5**
test!CXX_LOG(int LOG_TYPE = 0n2, char * format = 0x00000001`3f2a3868 "Starting the application")+0x463
test!main(int argc = 0n4, char ** argv = 0x00000000`00162920)+0x1806
test!__tmainCRTStartup(void)+0x13b
kernel32!BaseThreadInitThunk+0xd
ntdll!RtlUserThreadStart+0x21

我们检查了'决定'功能,它与锁定无关。它只是返回一些常量值。我已经读过LOG4CXX是线程安全的。这个问题并不经常发生,因此我们没有采用一致方式重现的步骤。

当我们杀死子线程时,是否有任何需要解决的问题?

1 个答案:

答案 0 :(得分:1)

重新设计您的应用程序。 TerminateThread本质上是不安全的,因为线程使用的资源不会被释放。你只是设法在它持有一个锁时终止它,现在你的主线程正在试图获得持有锁。找到另一种终止线程的方法。

以下是该堆栈跟踪中的锁:https://apache.googlesource.com/log4cxx/+/e3db59080a3506f0ed23e98cbcb2be58f0b15a20/src/main/cpp/logger.cpp#93