Ignore:
Timestamp:
Apr 20, 2009, 11:29:17 PM (15 years ago)
Author:
rosiere
Message:

1) Write queue with mealy
2) Network : fix bug
3) leak memory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces.cpp

    r113 r115  
    3939#endif
    4040
    41     for (std::list<Interface_fifo*>::iterator it = _list_interface->begin();
    42          it!=_list_interface->end();
    43          ++it)
    44       delete (*it);
     41//     for (std::list<Interface_fifo*>::iterator it = _list_interface->begin();
     42//          it!=_list_interface->end();
     43//          ++it)
     44//       delete (*it);
     45
     46    while (not _list_interface->empty())
     47      {
     48        delete _list_interface->front();
     49        _list_interface->pop_front();
     50      }
    4551
    4652    delete _list_interface;
Note: See TracChangeset for help on using the changeset viewer.