1*22757Smckusick/*
2*22757Smckusick * Copyright (c) 1982 Regents of the University of California.
3*22757Smckusick * All rights reserved.  The Berkeley software License Agreement
4*22757Smckusick * specifies the terms and conditions for redistribution.
5*22757Smckusick *
6*22757Smckusick *	@(#)bp.rep	5.1 (Berkeley) 06/07/85
7*22757Smckusick */
85471Slinton
95471Slinton/*
105471Slinton * breakpoint representation
115471Slinton */
125471Slinton
135471Slintontypedef struct bpinfo {
145471Slinton	unsigned int bpid;
155471Slinton	ADDRESS bpaddr;
165471Slinton	BPTYPE bptype;
175471Slinton	SYM *bpblock;
185471Slinton	NODE *bpcond;
195471Slinton	NODE *bpnode;
205471Slinton	LINENO bpline;
215471Slinton	struct bpinfo *bpnext;
225471Slinton} BPINFO;
235471Slinton
245471SlintonBPINFO *bphead;
255471SlintonBPINFO *newbp();
26