ddb.h (814aaaa7da4dab462d90e12e7b48b75f2093ccfd) | ddb.h (b4b4b5304bd22eab265c9c049cb7fc6b55c4ef3f) |
---|---|
1/*- 2 * Copyright (c) 1993, Garrett A. Wollman. 3 * Copyright (c) 1993, University of Vermont and State Agricultural College. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 205 unchanged lines hidden (view full) --- 214void db_restart_at_pc(bool watchpt); 215int db_set_variable(db_expr_t value); 216void db_set_watchpoints(void); 217void db_skip_to_eol(void); 218bool db_stop_at_pc(int type, int code, bool *is_breakpoint, 219 bool *is_watchpoint); 220#define db_strcpy strcpy 221void db_trace_self(void); | 1/*- 2 * Copyright (c) 1993, Garrett A. Wollman. 3 * Copyright (c) 1993, University of Vermont and State Agricultural College. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 205 unchanged lines hidden (view full) --- 214void db_restart_at_pc(bool watchpt); 215int db_set_variable(db_expr_t value); 216void db_set_watchpoints(void); 217void db_skip_to_eol(void); 218bool db_stop_at_pc(int type, int code, bool *is_breakpoint, 219 bool *is_watchpoint); 220#define db_strcpy strcpy 221void db_trace_self(void); |
222void db_trace_self_depth(int); | |
223int db_trace_thread(struct thread *, int); 224bool db_value_of_name(const char *name, db_expr_t *valuep); 225bool db_value_of_name_pcpu(const char *name, db_expr_t *valuep); 226bool db_value_of_name_vnet(const char *name, db_expr_t *valuep); 227int db_write_bytes(vm_offset_t addr, size_t size, char *data); 228void db_command_register(struct command_table *, struct command *); 229void db_command_unregister(struct command_table *, struct command *); 230int db_fetch_ksymtab(vm_offset_t ksym_start, vm_offset_t ksym_end); --- 67 unchanged lines hidden --- | 222int db_trace_thread(struct thread *, int); 223bool db_value_of_name(const char *name, db_expr_t *valuep); 224bool db_value_of_name_pcpu(const char *name, db_expr_t *valuep); 225bool db_value_of_name_vnet(const char *name, db_expr_t *valuep); 226int db_write_bytes(vm_offset_t addr, size_t size, char *data); 227void db_command_register(struct command_table *, struct command *); 228void db_command_unregister(struct command_table *, struct command *); 229int db_fetch_ksymtab(vm_offset_t ksym_start, vm_offset_t ksym_end); --- 67 unchanged lines hidden --- |