process.hh (13306:2196f4a8201f) process.hh (13308:30e825b4fd46)
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

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

92 void syncResetOn(bool inc_kids);
93 void syncResetOff(bool inc_kids);
94
95 void signalReset(bool set, bool sync);
96
97 void incref() { refCount++; }
98 void decref() { refCount--; }
99
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

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

92 void syncResetOn(bool inc_kids);
93 void syncResetOff(bool inc_kids);
94
95 void signalReset(bool set, bool sync);
96
97 void incref() { refCount++; }
98 void decref() { refCount--; }
99
100 const ::sc_core::sc_event &resetEvent() { return _resetEvent; }
101 const ::sc_core::sc_event &terminatedEvent() { return _terminatedEvent; }
100 ::sc_core::sc_event &resetEvent() { return _resetEvent; }
101 ::sc_core::sc_event &terminatedEvent() { return _terminatedEvent; }
102
103 void setStackSize(size_t size) { stackSize = size; }
104
105 void run();
106
107 void addStatic(StaticSensitivity *);
108 void setDynamic(DynamicSensitivity *);
109 void clearDynamic() { setDynamic(nullptr); }

--- 135 unchanged lines hidden ---
102
103 void setStackSize(size_t size) { stackSize = size; }
104
105 void run();
106
107 void addStatic(StaticSensitivity *);
108 void setDynamic(DynamicSensitivity *);
109 void clearDynamic() { setDynamic(nullptr); }

--- 135 unchanged lines hidden ---