new copyright; att/bsd/shared
[unix-history] / usr / src / usr.bin / pascal / pdx / breakpoint / bp.rep
CommitLineData
505bf312
KB
1/*-
2 * Copyright (c) 1982 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
f6f0d0bf 6 *
505bf312 7 * @(#)bp.rep 5.2 (Berkeley) %G%
f6f0d0bf 8 */
fbcf53cc
ML
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();