/*-1* SPDX-License-Identifier: MIT-CMU2*3* Mach Operating System4* Copyright (c) 1991,1990 Carnegie Mellon University5* All Rights Reserved.6*7* Permission to use, copy, modify and distribute this software and its8* documentation is hereby granted, provided that both the copyright9* notice and this permission notice appear in all copies of the10* software, derivative works or modified versions, and any portions11* thereof, and that both notices appear in supporting documentation.12*13* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS14* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR15* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.16*17* Carnegie Mellon requests users of this software to return to18*19* Software Distribution Coordinator or [email protected]20* School of Computer Science21* Carnegie Mellon University22* Pittsburgh PA 15213-389023*24* any improvements or extensions that they make and grant Carnegie the25* rights to redistribute these changes.26*/2728/*29* Author: David B. Golub, Carnegie Mellon University30* Date: 10/9031*/3233#ifndef _DDB_DB_WATCH_H_34#define _DDB_DB_WATCH_H_3536/*37* Watchpoint.38*/3940typedef struct db_watchpoint {41vm_map_t map; /* in this map */42db_addr_t loaddr; /* from this address */43db_addr_t hiaddr; /* to this address */44struct db_watchpoint *link; /* link in in-use or free chain */45} *db_watchpoint_t;4647#endif /* !_DDB_DB_WATCH_H_ */484950