Ignore:
Timestamp:
May 26, 2009, 9:01:47 PM (15 years ago)
Author:
rosiere
Message:

1) Context_state : Add statistics
2) Add configuration with multi front_end
3) Add optionnal pid at log filename

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/src/Message.cpp

    r115 r120  
    1515
    1616  static bool log_initialized;
     17  bool   log_with_pid;
    1718  FILE * log_stream;
    1819 
     
    2829#define FUNCTION "log_init"
    2930  void log_init (bool        have_file,
     31                 bool        with_pid ,
    3032                 std::string directory,
    3133                 std::string file)
     
    3436      {
    3537        log_initialized = true;
    36        
     38        log_with_pid    = with_pid;
     39
    3740        if (have_file)
    3841          {
     
    4346                                                     "log",
    4447                                                     (file==""),
    45                                                      (file==""),
     48                                                     with_pid,
    4649                                                     true);
    4750           
Note: See TracChangeset for help on using the changeset viewer.