sc_prim.cc (13140:ecd8a58f3884) sc_prim.cc (13189:057566bc8fd6)
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

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

136 double d, sc_time_unit u, const sc_event_and_list &eal)
137{
138 ::sc_core::next_trigger(d, u, eal);
139}
140
141bool
142sc_prim_channel::timed_out()
143{
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

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

136 double d, sc_time_unit u, const sc_event_and_list &eal)
137{
138 ::sc_core::next_trigger(d, u, eal);
139}
140
141bool
142sc_prim_channel::timed_out()
143{
144 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
145 return false;
144 return ::sc_core::timed_out();
146}
147
148void
149sc_prim_channel::wait()
150{
151 ::sc_core::wait();
152}
153

--- 73 unchanged lines hidden ---
145}
146
147void
148sc_prim_channel::wait()
149{
150 ::sc_core::wait();
151}
152

--- 73 unchanged lines hidden ---