event.hh (13295:e71ae162b863) event.hh (13299:6bde86615f6f)
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

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

77
78 void notify();
79 void notify(const sc_core::sc_time &t);
80 void
81 notify(double d, sc_core::sc_time_unit &u)
82 {
83 notify(sc_core::sc_time(d, u));
84 }
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

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

77
78 void notify();
79 void notify(const sc_core::sc_time &t);
80 void
81 notify(double d, sc_core::sc_time_unit &u)
82 {
83 notify(sc_core::sc_time(d, u));
84 }
85 void notifyDelayed(const sc_core::sc_time &t);
85 void cancel();
86
87 bool triggered() const;
88 uint64_t triggeredStamp() const { return _triggeredStamp; }
89
90 static Event *
91 getFromScEvent(sc_core::sc_event *e)
92 {

--- 76 unchanged lines hidden ---
86 void cancel();
87
88 bool triggered() const;
89 uint64_t triggeredStamp() const { return _triggeredStamp; }
90
91 static Event *
92 getFromScEvent(sc_core::sc_event *e)
93 {

--- 76 unchanged lines hidden ---