Deleted Added
sdiff udiff text old ( 12837:413a7b490b1b ) new ( 12929:6ed4226c66c7 )
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

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

62 void next_trigger(double, sc_time_unit);
63 void next_trigger(const sc_time &, const sc_event &);
64 void next_trigger(double, sc_time_unit, const sc_event &);
65 void next_trigger(const sc_time &, const sc_event_or_list &);
66 void next_trigger(double, sc_time_unit, const sc_event_or_list &);
67 void next_trigger(const sc_time &, const sc_event_and_list &);
68 void next_trigger(double, sc_time_unit, const sc_event_and_list &);
69
70 void wait();
71 void wait(int);
72 void wait(const sc_event &);
73 void wait(const sc_event_or_list &);
74 void wait(const sc_event_and_list &);
75 void wait(const sc_time &);
76 void wait(double, sc_time_unit);
77 void wait(const sc_time &, const sc_event &);

--- 20 unchanged lines hidden ---