source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/src/Queue_statistics.cpp @ 67

Last change on this file since 67 was 67, checked in by rosiere, 17 years ago

Ajout d'un nouveau composant : fifo generic (un port lecture et un port ecriture).

File size: 591 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Queue/include/Queue.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace generic {
14namespace queue {
15
16
17#undef  FUNCTION
18#define FUNCTION "Queue::statistics"
19  string Queue::statistics (uint32_t depth)
20  {
21    log_printf(FUNC,Queue,FUNCTION,"Begin");
22
23    string txt = _stat->print(depth);
24   
25    log_printf(FUNC,Queue,FUNCTION,"End");
26
27    return txt;
28  };
29
30}; // end namespace queue
31}; // end namespace generic
32
33}; // end namespace behavioural
34}; // end namespace morpheo             
35#endif
Note: See TracBrowser for help on using the repository browser.