X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=params.h;h=9a2cf3b96f99f5c864d4be1903b4eecb72c2fc71;hb=ae3b87a50d4122a8feb95eddc6b0f208f6c7d5cc;hp=ac5dd9665b6a2cf5e66b276668bb127eb98e4230;hpb=251c63183adee7dbdceeabce5a706e8281bc2887;p=c11tester.git diff --git a/params.h b/params.h index ac5dd966..9a2cf3b9 100644 --- a/params.h +++ b/params.h @@ -6,23 +6,10 @@ * the model checker. */ struct model_params { - int maxreads; - int maxfuturedelay; - bool yieldon; - bool yieldblock; - unsigned int fairwindow; - unsigned int enabledcount; - unsigned int bound; unsigned int uninitvalue; - - /** @brief Maximum number of future values that can be sent to the same - * read */ - int maxfuturevalues; - - /** @brief Only generate a new future value/expiration pair if the - * expiration time exceeds the existing one by more than the slop - * value */ - unsigned int expireslop; + int maxexecutions; + bool nofork; + bool threadsnocleanup; /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */ int verbose; @@ -34,4 +21,6 @@ struct model_params { char **argv; }; -#endif /* __PARAMS_H__ */ +void param_defaults(struct model_params *params); + +#endif /* __PARAMS_H__ */