sc_module.cc (12928:1746600c4672) sc_module.cc (12929:6ed4226c66c7)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 287 unchanged lines hidden (view full) ---

296
297void
298sc_module::next_trigger(double, sc_time_unit, const sc_event_and_list &)
299{
300 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
301}
302
303
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 287 unchanged lines hidden (view full) ---

296
297void
298sc_module::next_trigger(double, sc_time_unit, const sc_event_and_list &)
299{
300 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
301}
302
303
304bool
305sc_module::timed_out()
306{
307 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
308 return false;
309}
310
311
304void
305sc_module::wait()
306{
307 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
308}
309
310void
311sc_module::wait(int)

--- 166 unchanged lines hidden (view full) ---

478}
479
480void
481next_trigger(double, sc_time_unit, const sc_event_and_list &)
482{
483 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
484}
485
312void
313sc_module::wait()
314{
315 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
316}
317
318void
319sc_module::wait(int)

--- 166 unchanged lines hidden (view full) ---

486}
487
488void
489next_trigger(double, sc_time_unit, const sc_event_and_list &)
490{
491 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
492}
493
494bool
495timed_out()
496{
497 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
498 return false;
499}
486
500
501
487void
488wait()
489{
490 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
491}
492
493void
494wait(int)

--- 130 unchanged lines hidden ---
502void
503wait()
504{
505 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
506}
507
508void
509wait(int)

--- 130 unchanged lines hidden ---