ModelChecker will take care of launching the user program soon.
parse_options(¶ms, &main_argc, &main_argv);
+ /* Pass remaining arguments to user program */
+ params.argc = main_argc;
+ params.argv = main_argv;
+
//Initialize race detector
initRaceDetector();
/** @brief Verbosity (0 = quiet; 1 = noisy) */
int verbose;
+
+ /** @brief Command-line argument count to pass to user program */
+ int argc;
+
+ /** @brief Command-line arguments to pass to user program */
+ char **argv;
};
/** @brief Model checker execution stats */