diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/systemc/core/sc_main_fiber.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/systemc/core/sc_main_fiber.hh b/src/systemc/core/sc_main_fiber.hh index 2e89f11df..e594cc84c 100644 --- a/src/systemc/core/sc_main_fiber.hh +++ b/src/systemc/core/sc_main_fiber.hh @@ -47,6 +47,8 @@ class ScMainFiber : public Fiber bool _called = false; public: + ScMainFiber() : Fiber(8 * 1024 * 1024) {} + int argc() { return _argc; } const char *const *argv() { return _argv; } std::string resultStr() { return _resultStr; } |