summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/tmp/others/priority_bug/priority_bug.cpp
blob: a5dd2e66410f11474d43c55733eda8fe1b0f9043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <systemc>

using namespace sc_core;
using std::cout;
using std::endl;

struct M4: sc_module
{
  M4(sc_module_name _name)
  {
    SC_THREAD(calling);
    SC_THREAD(target);
      t = sc_get_current_process_handle();
  }
  
  sc_process_handle t;
  sc_event ev;
  int count;

  void calling()
  {
  
    t.sync_reset_on(); 
    wait(10, SC_NS);

    t.suspend();
    wait(10, SC_NS);

    t.disable();
    wait(10, SC_NS);

    t.enable();
    ev.notify();
    wait(10, SC_NS);  // !!!!!! target is RESET WHILE STILL SUSPENDED !!!!!!

    sc_stop();
  }

  void target()
  {
    cout << "Target called/reset at " << sc_time_stamp() << endl;
    count = 0;
    for (;;)
    {
      wait(ev);
      cout << "Target awoke at " << sc_time_stamp() << " count = " << count << endl;
      ++count;
    }
  }
  
  SC_HAS_PROCESS(M4);
};

int sc_main(int argc, char* argv[])
{
  M4 m("m");
  
  sc_core::sc_allow_process_control_corners = true;
  sc_start();
  
  return 0;
}