您的位置:首页 > 其它

log4cplus内存泄漏起因之一 结构体字节对齐 log4cplus结构体使用的是8字节对齐

2013-05-29 16:28 183 查看
int main()
{
  string commonLayout = "%d{%Y-%m-%d %H:%M:%S %Q} | %p | %t | %m [%l] %n";
  string logPath = "d:\\testlog.txt";
  std::auto_ptr<Layout> layout(new PatternLayout(LOG4CPLUS_TEXT(commonLayout)));
  SharedAppenderPtr appender(new FileAppender(LOG4CPLUS_TEXT(logPath), std::ios_base::app));
  appender->setLayout(layout);
  Logger logger = Logger::getInstance(LOG4CPLUS_TEXT("root.test"));
  logger.setLogLevel(DEBUG_LOG_LEVEL);
  logger.addAppender(appender);
  LOG4CPLUS_INFO(logger, LOG4CPLUS_TEXT("run"));
  return 0;
}
当结构体字节对齐使用默认的时候 程序运行正常 log4cplus使用的是8字节对齐方式, 如果程序设置成其他字节对齐 就会出现如下错误:

还会出现如下提示:HEAP[testLog4.exe]: Heap block at 004EAB60 modified at 004EACD7 past requested size of 16f
Windows has triggered a breakpoint in testLog4.exe.This may be due to a corruption of the heap, which indicates a bug in testLog4.exe or any of the DLLs it has loaded.This may also be due to the user pressing F12 while testLog4.exe has focus.The output window may have more diagnostic information.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: