Applistar

5. 9. 1 sc_event

TOP > 5 SystemC入門 > 5. 9 イべント > 5. 9. 1 sc_event
  5. 9. 1 sc_event  

5. 9. 1 sc_event

sc_event は event という種類のオブジェクトを作るための クラスです。 DoxyGen での説明は次のところにあります。 http://www.iro.umontreal.ca/~chareslu/systemc-2.0.1/classsc__event.html

継承関係は次のようになっています。

この event を使って、次のような notify 文が実行されると、 thread が再開され、あるいは method が開始されます。

sc_event e1;
...
notify(e1);
  5. 9. 1 sc_event  
TOP > 5 SystemC入門 > 5. 9 イべント > 5. 9. 1 sc_event