process.hh (13207:034ca389a810) process.hh (13259:3730df183b84)
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

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

114 static Process *newest() { return _newest; }
115
116 void lastReport(::sc_core::sc_report *report);
117 ::sc_core::sc_report *lastReport() const;
118
119 bool hasStaticSensitivities() { return !staticSensitivities.empty(); }
120 bool internal() { return _internal; }
121 bool timedOut() { return _timedOut; }
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

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

114 static Process *newest() { return _newest; }
115
116 void lastReport(::sc_core::sc_report *report);
117 ::sc_core::sc_report *lastReport() const;
118
119 bool hasStaticSensitivities() { return !staticSensitivities.empty(); }
120 bool internal() { return _internal; }
121 bool timedOut() { return _timedOut; }
122 bool syncReset() { return _syncReset; }
122
123 bool dontInitialize() { return _dontInitialize; }
124 void dontInitialize(bool di) { _dontInitialize = di; }
125
126 void joinWait(::sc_core::sc_join *join) { joinWaiters.push_back(join); }
127
128 protected:
129 void timeout();

--- 57 unchanged lines hidden ---
123
124 bool dontInitialize() { return _dontInitialize; }
125 void dontInitialize(bool di) { _dontInitialize = di; }
126
127 void joinWait(::sc_core::sc_join *join) { joinWaiters.push_back(join); }
128
129 protected:
130 void timeout();

--- 57 unchanged lines hidden ---