Deleted Added
sdiff udiff text old ( 12953:ddfd5e4643a9 ) new ( 12958:a8188f40f342 )
full compact
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

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

416{
417 ::sc_core::at_negedge(s);
418}
419
420
421void
422next_trigger()
423{
424 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
425}
426
427void
428next_trigger(const sc_event &)
429{
430 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
431}
432
433void
434next_trigger(const sc_event_or_list &)
435{
436 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
437}
438
439void
440next_trigger(const sc_event_and_list &)
441{
442 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
443}
444
445void
446next_trigger(const sc_time &)
447{
448 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
449}
450
451void
452next_trigger(double d, sc_time_unit u)
453{
454 next_trigger(sc_time(d, u));
455}
456
457void
458next_trigger(const sc_time &, const sc_event &)
459{
460 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
461}
462
463void
464next_trigger(double d, sc_time_unit u, const sc_event &e)
465{
466 next_trigger(sc_time(d, u), e);
467}
468
469void
470next_trigger(const sc_time &, const sc_event_or_list &)
471{
472 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
473}
474
475void
476next_trigger(double d, sc_time_unit u, const sc_event_or_list &eol)
477{
478 next_trigger(sc_time(d, u), eol);
479}
480
481void
482next_trigger(const sc_time &, const sc_event_and_list &)
483{
484 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
485}
486
487void
488next_trigger(double d, sc_time_unit u, const sc_event_and_list &eal)
489{
490 next_trigger(sc_time(d, u), eal);
491}
492
493bool
494timed_out()
495{
496 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
497 return false;
498}
499
500
501void
502wait()
503{
504 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
505}
506
507void
508wait(int)
509{
510 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
511}
512
513void
514wait(const sc_event &)
515{
516 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
517}
518
519void
520wait(const sc_event_or_list &)
521{
522 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
523}
524
525void
526wait(const sc_event_and_list &)
527{
528 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
529}
530
531void
532wait(const sc_time &)
533{
534 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
535}
536
537void
538wait(double d, sc_time_unit u)
539{
540 wait(sc_time(d, u));
541}
542
543void
544wait(const sc_time &, const sc_event &)
545{
546 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
547}
548
549void
550wait(double d, sc_time_unit u, const sc_event &e)
551{
552 wait(sc_time(d, u), e);
553}
554
555void
556wait(const sc_time &, const sc_event_or_list &)
557{
558 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
559}
560
561void
562wait(double d, sc_time_unit u, const sc_event_or_list &eol)
563{
564 wait(sc_time(d, u), eol);
565}
566
567void
568wait(const sc_time &, const sc_event_and_list &)
569{
570 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
571}
572
573void
574wait(double d, sc_time_unit u, const sc_event_and_list &eal)
575{
576 wait(sc_time(d, u), eal);
577}
578

--- 67 unchanged lines hidden ---