Changes between Version 124 and Version 125 of Writing Rules/Tlmt


Ignore:
Timestamp:
Mar 3, 2009, 11:06:31 AM (15 years ago)
Author:
alinevieiramello@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Writing Rules/Tlmt

    v124 v125  
    156156  sc_core::sc_time m_time_quantum;                   // the time quantum
    157157  ...
    158 
    159   pdes_local_time( sc_core::sc_time time_quantum );  // constructor
     158  pdes_local_time(sc_core::sc_time time_quantum);    // constructor
    160159  void add(const sc_core::sc_time& t);               // add an increment to the local time
    161160  void set(sc_core::sc_time t);                      // set the local time
     
    169168  bool m_activity_status;                           // the initiator activity status
    170169  ...
     170  pdes_activity_status();                           // constructor
    171171  void set(bool a);                                 // set the activity status (true if the component is active)
    172172  bool get();                                       // get the activity state
     
    258258  m_pdes_local_time = new pdes_local_time(time_quantum);
    259259  //PDES activity status
    260   m_pdes_activity_status = new pdes_activity_status(true);
     260  m_pdes_activity_status = new pdes_activity_status();
    261261  // register thread process
    262262  SC_THREAD(execLoop);