process.cc (13087:1df34ed84a4b) process.cc (13093:bea17ab221ef)
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

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

315 reset = false;
316 try {
317 func->call();
318 } catch(const ::sc_core::sc_unwind_exception &exc) {
319 reset = exc.is_reset();
320 _isUnwinding = false;
321 }
322 } while (reset);
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

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

315 reset = false;
316 try {
317 func->call();
318 } catch(const ::sc_core::sc_unwind_exception &exc) {
319 reset = exc.is_reset();
320 _isUnwinding = false;
321 }
322 } while (reset);
323 needsStart(true);
323}
324
325void
326Process::addStatic(PendingSensitivity *s)
327{
328 pendingStaticSensitivities.push_back(s);
329}
330

--- 77 unchanged lines hidden ---
324}
325
326void
327Process::addStatic(PendingSensitivity *s)
328{
329 pendingStaticSensitivities.push_back(s);
330}
331

--- 77 unchanged lines hidden ---