2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
|
#endif
#endif
/*
** Send a time-out reply
*/
void sigalrm_handler(int x){
printf("TIMEOUT\n");
fflush(stdout);
exit(1);
}
/*
** COMMAND: server*
** COMMAND: ui
**
** Usage: %fossil server ?OPTIONS? ?REPOSITORY?
|
|
<
<
|
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
|
#endif
#endif
/*
** Send a time-out reply
*/
void sigalrm_handler(int x){
fossil_panic("TIMEOUT");
}
/*
** COMMAND: server*
** COMMAND: ui
**
** Usage: %fossil server ?OPTIONS? ?REPOSITORY?
|