You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
316 B

  1. #include <stdlib.h>
  2. #include "threads.h"
  3. /* The only purpose of this file is to do
  4. * some configuration if required before
  5. * calling the actual rosace main function
  6. */
  7. int main(int argc, char* argv[]){
  8. uint64_t tsimu=300*200;
  9. if (argc>1) {
  10. tsimu = atoi(argv[1])*200;
  11. }
  12. return run_rosace(tsimu);
  13. }