Lines Matching defs:wait

50 	    "all waits except wait() and wait(N)\n" \
57 wait( sc_simcontext* simc )
76 wait( const sc_event& e, sc_simcontext* simc )
81 RCAST<sc_thread_handle>( cpi->process_handle )->wait( e );
88 cthread_h->wait( e );
100 wait( const sc_event_or_list& el, sc_simcontext* simc )
105 RCAST<sc_thread_handle>( cpi->process_handle )->wait( el );
111 "wait(event_list) is deprecated for SC_CTHREAD, use SC_THREAD");
114 cthread_h->wait( el );
126 wait( const sc_event_and_list& el, sc_simcontext* simc )
131 RCAST<sc_thread_handle>( cpi->process_handle )->wait( el );
138 cthread_h->wait( el );
150 wait( const sc_time& t, sc_simcontext* simc )
155 RCAST<sc_thread_handle>( cpi->process_handle )->wait( t );
162 cthread_h->wait( t );
174 wait( const sc_time& t, const sc_event& e, sc_simcontext* simc )
179 RCAST<sc_thread_handle>( cpi->process_handle )->wait( t, e );
186 cthread_h->wait( t, e );
198 wait( const sc_time& t, const sc_event_or_list& el, sc_simcontext* simc )
203 RCAST<sc_thread_handle>( cpi->process_handle )->wait( t, el );
210 cthread_h->wait( t, el );
222 wait( const sc_time& t, const sc_event_and_list& el, sc_simcontext* simc )
227 RCAST<sc_thread_handle>( cpi->process_handle )->wait( t, el );
234 cthread_h->wait( t, el );
256 "in SC_THREADs and SC_CTHREADs use wait() instead" );
271 "in SC_THREADs and SC_CTHREADs use wait() instead" );
283 "in SC_THREADs and SC_CTHREADs use wait() instead" );
295 "in SC_THREADs and SC_CTHREADs use wait() instead" );
307 "in SC_THREADs and SC_CTHREADs use wait() instead" );
319 "in SC_THREADs and SC_CTHREADs use wait() instead" );
331 "in SC_THREADs and SC_CTHREADs use wait() instead" );
343 "in SC_THREADs and SC_CTHREADs use wait() instead" );
406 than wait() and wait(N).
410 wait() and wait(N).