• unknown's avatar
    BUG#22309 FileLogHandler::createNewFile() isn't thread safe - may loose log messages · 1577b962
    unknown authored
    BUG#22305  	SysLogHandler not thread safe
    BUG#22313  	can get duplicate log messages in cluster log
    
    Fix all these problems with one patch. Make Logger, hence EventLogger (with a 
    bit more) thread safe.
    
    
    storage/ndb/include/debugger/EventLogger.hpp:
      remove m_text to make thread safe
    storage/ndb/include/logger/Logger.hpp:
      Use mutex to protect member variables for multithreaded use.
    storage/ndb/src/common/debugger/EventLogger.cpp:
      use a string on the stack instead of member variable to make class thread safe
    storage/ndb/src/common/logger/Logger.cpp:
      use mutexes to Guard member variables. makes class therad safe
    1577b962
Logger.hpp 7.26 KB