xref: /csrg-svn/local/toolchest/ksh/sh/timeout.h (revision 35172)
1*35172Smarc /*
2*35172Smarc 
3*35172Smarc  *      Copyright (c) 1984, 1985, 1986 AT&T
4*35172Smarc  *      All Rights Reserved
5*35172Smarc 
6*35172Smarc  *      THIS IS UNPUBLISHED PROPRIETARY SOURCE
7*35172Smarc  *      CODE OF AT&T.
8*35172Smarc  *      The copyright notice above does not
9*35172Smarc  *      evidence any actual or intended
10*35172Smarc  *      publication of such source code.
11*35172Smarc 
12*35172Smarc  */
13*35172Smarc /* @(#)timeout.h	1.1 */
14*35172Smarc 
15*35172Smarc /*
16*35172Smarc  *	UNIX shell
17*35172Smarc  *
18*35172Smarc  *	S. R. Bourne
19*35172Smarc  *	AT&T Bell Laboratories
20*35172Smarc  *
21*35172Smarc  */
22*35172Smarc #ifdef IH
23*35172Smarc #define TIMEOUT		7000	/* seconds elapsing before termination */
24*35172Smarc #else
25*35172Smarc #define TIMEOUT		0	/* seconds elapsing before termination */
26*35172Smarc #endif
27*35172Smarc #define TGRACE		60	/* grace period before termination */
28*35172Smarc 				/* The time_warn message contains this number */
29*35172Smarc extern long	timeout;
30*35172Smarc extern MSG	timed_out;
31*35172Smarc extern MSG	time_warn;
32