Skip to content
Snippets Groups Projects
Commit ae081b48 authored by rswindell's avatar rswindell
Browse files

You can set the idle sleep value (in milliseconds) with the -s cmdline opt.

parent b94cbddc
No related branches found
No related tags found
No related merge requests found
......@@ -796,6 +796,7 @@ int main(int argc, char** argv) {
int done;
int ciolib_mode=CIOLIB_MODE_AUTO;
time_t last_semfile_check = time(NULL);
int idle_sleep=100;
/******************/
/* Ini file stuff */
......@@ -886,6 +887,9 @@ int main(int argc, char** argv) {
case 'E':
uifc.esc_delay=atoi(argv[i]+2);
break;
case 'S':
idle_sleep=atoi(argv[i]+2);
break;
case 'I':
switch(toupper(argv[i][2])) {
case 'A':
......@@ -926,7 +930,9 @@ int main(int argc, char** argv) {
#endif
" A = ANSI mode\r\n"
"-l# = set screen lines to #\n"
"-s# = set idle slsep to # milliseconds (defualt: %d)\n"
,argv[0]
,idle_sleep
);
exit(0);
}
......@@ -1012,7 +1018,7 @@ int main(int argc, char** argv) {
,title,mopt);
if(j == -2) {
SLEEP(100);
SLEEP(idle_sleep);
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment