Lines Matching refs:timeout
17 * This utility software allows to run any executable file with a timeout limit.
20 * where n is the timeout duration in seconds,
32 * as if it has been timedout. This is useful to check a timeout return code value.
62 int status, timeout;
76 printf(" n is the timeout duration in seconds,\n");
81 (" The second use case will emulate an immediate timeout.\n\n");
85 timeout = atoi(argv[1]);
86 if (timeout < 1) {
88 "Invalid timeout value \"%s\". Timeout must be a positive integer.\n",
98 alarm(timeout);