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