Deleted Added
sdiff udiff text old ( 12901:72bc9ff65802 ) new ( 12909:88127fe770f5 )
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

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

366void
367sc_module::wait(double, sc_time_unit, const sc_event_and_list &)
368{
369 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
370}
371
372
373void
374next_trigger()
375{
376 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
377}
378
379void
380next_trigger(const sc_event &)
381{

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

516}
517
518void
519wait(double, sc_time_unit, const sc_event_and_list &)
520{
521 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
522}
523
524const char *
525sc_gen_unique_name(const char *)
526{
527 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
528 return "";
529}
530
531bool

--- 22 unchanged lines hidden ---