Ignore:
Timestamp:
Jun 17, 2009, 2:11:25 PM (15 years ago)
Author:
rosiere
Message:

1) Add test and configuration
2) Fix Bug
3) Add log file in load store unit
4) Fix Bug in environment

Location:
trunk/IPs/systemC/processor/Morpheo/Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Message.h

    r120 r124  
    4343#endif
    4444
    45 extern bool   log_with_pid;
    4645extern FILE * log_stream;
    4746
    4847FILE * log      (FILE * stream);
    4948void   log_init (bool        have_file,
     49                 bool        with_date,
    5050                 bool        with_pid ,
    5151                 std::string directory,
  • trunk/IPs/systemC/processor/Morpheo/Common/src/Message.cpp

    r120 r124  
    1515
    1616  static bool log_initialized;
    17   bool   log_with_pid;
    1817  FILE * log_stream;
    1918 
     
    2928#define FUNCTION "log_init"
    3029  void log_init (bool        have_file,
     30                 bool        with_date,
    3131                 bool        with_pid ,
    3232                 std::string directory,
     
    3636      {
    3737        log_initialized = true;
    38         log_with_pid    = with_pid;
    3938
    4039        if (have_file)
     
    4544                                                     "",
    4645                                                     "log",
    47                                                      (file==""),
     46                                                     with_date,
    4847                                                     with_pid,
    4948                                                     true);
Note: See TracChangeset for help on using the changeset viewer.