Deleted Added
sdiff udiff text old ( 13047:61a849083f15 ) new ( 13049:181358d628b7 )
full compact
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

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

205}
206
207void
208Scheduler::pause()
209{
210 _paused = true;
211 kernel->status(::sc_core::SC_PAUSED);
212 scMain->run();
213}
214
215void
216Scheduler::stop()
217{
218 _stopped = true;
219 kernel->stop();
220 scMain->run();

--- 68 unchanged lines hidden ---