process.hh (13063:c9905ead0041) process.hh (13072:f2b83208ab54)
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

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

325
326 protected:
327 Process(const char *name, ProcessFuncWrapper *func, bool _dynamic);
328
329 static Process *_newest;
330
331 virtual ~Process()
332 {
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

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

325
326 protected:
327 Process(const char *name, ProcessFuncWrapper *func, bool _dynamic);
328
329 static Process *_newest;
330
331 virtual ~Process()
332 {
333 popListNode();
333 delete func;
334 for (auto s: staticSensitivities)
335 delete s;
336 }
337
338 ::sc_core::sc_event _resetEvent;
339 ::sc_core::sc_event _terminatedEvent;
340

--- 49 unchanged lines hidden ---
334 delete func;
335 for (auto s: staticSensitivities)
336 delete s;
337 }
338
339 ::sc_core::sc_event _resetEvent;
340 ::sc_core::sc_event _terminatedEvent;
341

--- 49 unchanged lines hidden ---