summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/test01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/test01.cpp')
-rw-r--r--src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/test01.cpp106
1 files changed, 106 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/test01.cpp b/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/test01.cpp
new file mode 100644
index 000000000..ee8d29416
--- /dev/null
+++ b/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/test01.cpp
@@ -0,0 +1,106 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+// test01.cpp -- Quick Test Of Process Control On Threads For IEEE 1666-2011
+//
+// Original Author: John Aynsley, Doulos
+//
+// MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+//
+// $Log: test01.cpp,v $
+// Revision 1.2 2011/03/07 19:32:18 acg
+// Andy Goodrich: addition to set sc_core::sc_allow_process_control_corners
+// to true so that this test avoids corner case error messages.
+//
+// Revision 1.1 2011/02/05 21:13:19 acg
+// Andy Goodrich: move of tests John Aynsley will replace.
+//
+// Revision 1.1 2011/01/14 14:23:16 acg
+// Andy Goodrich: new test.
+//
+
+#define SC_INCLUDE_DYNAMIC_PROCESSES
+#include <systemc>
+
+using namespace sc_core;
+using std::cout;
+using std::endl;
+
+SC_MODULE(Top)
+{
+ SC_CTOR(Top)
+ {
+ SC_THREAD(gen);
+ SC_THREAD(T1);
+ h1 = sc_get_current_process_handle();
+ SC_THREAD(T2);
+ h2 = sc_get_current_process_handle();
+ }
+
+ sc_event ev;
+
+ sc_process_handle h1, h2;
+
+ void gen()
+ {
+ for (;;)
+ {
+ wait(10, SC_NS);
+ ev.notify();
+ }
+ }
+
+ void T1()
+ {
+ wait(25, SC_NS);
+ cout << "suspend: time = " << sc_time_stamp() << endl;
+ h2.suspend();
+ wait(20, SC_NS);
+ cout << "resume: time = " << sc_time_stamp() << endl;
+ h2.resume();
+ wait(20, SC_NS);
+
+ cout << "disable: time = " << sc_time_stamp() << endl;
+ h2.disable();
+ wait(20, SC_NS);
+ cout << "enable: time = " << sc_time_stamp() << endl;
+ h2.enable();
+ wait(20, SC_NS);
+ sc_stop();
+ }
+
+ void T2()
+ {
+ for (;;)
+ {
+ wait(ev);
+ cout << "T2: time = " << sc_time_stamp() << endl;
+ }
+ }
+};
+
+int sc_main(int argc, char* argv[])
+{
+ Top top("top");
+ sc_core::sc_allow_process_control_corners = true;
+ sc_start();
+
+ cout << endl << "End Of Test" << endl;
+ return 0;
+}