1*48103Sbostic/*-
2*48103Sbostic * Copyright (c) 1982 The Regents of the University of California.
3*48103Sbostic * All rights reserved.
422757Smckusick *
5*48103Sbostic * %sccs.include.redist.c%
6*48103Sbostic *
7*48103Sbostic *	@(#)bp.rep	5.2 (Berkeley) 04/16/91
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