1/*-
2 * Copyright (c) 1982, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
7 *	@(#)bp.rep	8.1 (Berkeley) 06/06/93
8 */
9
10/*
11 * breakpoint representation
12 */
13
14typedef struct bpinfo {
15	unsigned int bpid;
16	ADDRESS bpaddr;
17	BPTYPE bptype;
18	SYM *bpblock;
19	NODE *bpcond;
20	NODE *bpnode;
21	LINENO bpline;
22	struct bpinfo *bpnext;
23} BPINFO;
24
25BPINFO *bphead;
26BPINFO *newbp();
27