148103Sbostic/*-
2*62125Sbostic * Copyright (c) 1982, 1993
3*62125Sbostic *	The Regents of the University of California.  All rights reserved.
422757Smckusick *
548103Sbostic * %sccs.include.redist.c%
648103Sbostic *
7*62125Sbostic *	@(#)bp.rep	8.1 (Berkeley) 06/06/93
822757Smckusick */
95471Slinton
105471Slinton/*
115471Slinton * breakpoint representation
125471Slinton */
135471Slinton
145471Slintontypedef struct bpinfo {
155471Slinton	unsigned int bpid;
165471Slinton	ADDRESS bpaddr;
175471Slinton	BPTYPE bptype;
185471Slinton	SYM *bpblock;
195471Slinton	NODE *bpcond;
205471Slinton	NODE *bpnode;
215471Slinton	LINENO bpline;
225471Slinton	struct bpinfo *bpnext;
235471Slinton} BPINFO;
245471Slinton
255471SlintonBPINFO *bphead;
265471SlintonBPINFO *newbp();
27