source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Write_queue/src/Parameters_msg_error.cpp @ 74

Last change on this file since 74 was 74, checked in by rosiere, 16 years ago

New component : Read_unit (instance between a write queue and a optionnal execute_queue)

File size: 1.1 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Types.h"
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Write_queue/include/Parameters.h"
10#include <sstream>
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_execute_loop {
16namespace execute_loop {
17namespace multi_write_unit {
18namespace write_unit {
19namespace write_queue {
20
21
22#undef  FUNCTION
23#define FUNCTION "Write_queue::msg_error"
24  std::string Parameters::msg_error(void)
25  {
26    log_printf(FUNC,Write_queue,FUNCTION,"Begin");
27
28    std::string msg = "";
29
30    if (_nb_bypass_write > _size_queue)
31      msg += " * The write_queue can't have more bypass_write than entry in the queue.";
32
33    return msg;
34
35    log_printf(FUNC,Write_queue,FUNCTION,"End");
36  };
37
38}; // end namespace write_queue
39}; // end namespace write_unit
40}; // end namespace multi_write_unit
41}; // end namespace execute_loop
42}; // end namespace multi_execute_loop
43}; // end namespace core
44
45}; // end namespace behavioural
46}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.