blob: de2b454dfbbdab1ef0f6a97a31320f07703e51e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* $NetBSD: param.h,v 1.3 1994/10/27 04:21:23 cgd Exp $ */
/*
* Tunable parameters
*/
/*
* RARP as well as TFTP uses a timeout mechanism which starts with four
* seconds and eventually go up as high as 4 << NRETRIES seconds. That
* is, the number of retry iterations.
*/
#define NRETRIES 6
#ifdef MONITOR
/*
* BIOS break interrupt. This interrupt is generated by the
* keyboard driver every time CTRL BREAK is pressed. We pick
* it up to jump into the monitor.
*/
#define BRK_INTR 0x1B
/*
* Number of arguments in the users' command line
*/
#define ARGVECSIZE 5
#endif /* MONITOR */
|