Last change
on this file was
117,
checked in by rosiere, 16 years ago
|
1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme
|
-
Property svn:keywords set to
Id
|
File size:
892 bytes
|
Line | |
---|
1 | /* |
---|
2 | * $Id: Parameters.cpp 117 2009-05-16 14:42:39Z rosiere $ |
---|
3 | * |
---|
4 | * [ Description ] |
---|
5 | * |
---|
6 | */ |
---|
7 | |
---|
8 | #include "Behavioural/include/Parameters.h" |
---|
9 | |
---|
10 | namespace morpheo { |
---|
11 | namespace behavioural { |
---|
12 | |
---|
13 | #undef FUNCTION |
---|
14 | #define FUNCTION "Parameters::Parameters" |
---|
15 | Parameters::Parameters (void) : |
---|
16 | _type ("") |
---|
17 | { |
---|
18 | log_printf(FUNC,Behavioural,FUNCTION,"Begin"); |
---|
19 | log_printf(FUNC,Behavioural,FUNCTION,"End"); |
---|
20 | }; |
---|
21 | |
---|
22 | #undef FUNCTION |
---|
23 | #define FUNCTION "Parameters::Parameters" |
---|
24 | Parameters::Parameters (std::string type) : |
---|
25 | _type (type) |
---|
26 | { |
---|
27 | log_printf(FUNC,Behavioural,FUNCTION,"Begin"); |
---|
28 | log_printf(FUNC,Behavioural,FUNCTION,"End"); |
---|
29 | }; |
---|
30 | |
---|
31 | #undef FUNCTION |
---|
32 | #define FUNCTION "Parameters::~Parameters" |
---|
33 | Parameters::~Parameters () |
---|
34 | { |
---|
35 | log_printf(FUNC,Behavioural,FUNCTION,"Begin"); |
---|
36 | log_printf(FUNC,Behavioural,FUNCTION,"End"); |
---|
37 | }; |
---|
38 | |
---|
39 | }; // end namespace behavioural |
---|
40 | }; // end namespace morpheo |
---|
Note: See
TracBrowser
for help on using the repository browser.