1 Universe  = vanilla 2 Executable = test 3 Arguments Â= 10 20 4 Log    Â= test.log 5 Output   = test.out 6 Error   Â= test.error 7 Queue
 1 #include <stdio.h> 2 3 int main(int argc, char **argv) { 4 5     int sleep_time; 6     int input; 7     int failure; 8 9     if(argc != 3) {Â10         printf("Usage: test <sleep-time> <integer>\n");Â11         failure = 1;Â12     } else {Â13         sleep_time = atoi(argv[1]);Â14         input = atoi(argv[2]);Â15Â16         printf("Thinking really hard for %d seconds...\n", sleep_time);Â17         sleep(sleep_time);Â18         printf("We calculated: %d\n", input * 2);Â19         failure = 0;Â20     }Â21Â22     return failure;Â23 }
Attachment:
condor_config
Description: Binary data