Ignore:
Timestamp:
Jul 9, 2007, 11:04:26 AM (17 years ago)
Author:
rosiere
Message:

Modif mineur : ajout d'info de débug

Release non stable

File:
1 edited

Legend:

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

    r42 r43  
    1212namespace behavioural          {
    1313
     14#undef  FUNCTION
     15#define FUNCTION "Entity::get_interfaces"
    1416  string Entity::get_interfaces (void)
    1517  {
     18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    1619    ostringstream text;
    1720    text << *(_interfaces);
     21    log_printf(FUNC,Behavioural,FUNCTION,"End");
    1822    return text.str();
    1923  };
    2024
     25#undef  FUNCTION
     26#define FUNCTION "Entity::get_interfaces_list"
    2127  Interfaces * Entity::get_interfaces_list (void)
    2228  {
    23     return _interfaces;
     29    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     30    Interfaces * _return = _interfaces;
     31    log_printf(FUNC,Behavioural,FUNCTION,"End");
     32    return _return;
    2433  };
    2534 
Note: See TracChangeset for help on using the changeset viewer.