1 /* drivers/misc/qemutrace/qemu_trace.h 2 * 3 * Copyright (C) 2007-2008 Google, Inc. 4 * 5 * This software is licensed under the terms of the GNU General Public 6 * 7 * License version 2, as published by the Free Software Foundation, and 8 * may be copied, distributed, and modified under those terms. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 */ 16 17 void qemu_trace_start(void); 18 void qemu_trace_stop(void); 19 int qemu_trace_get_tracing(void); 20 void qemu_trace_add_mapping(unsigned int addr, const char *symbol); 21 void qemu_trace_remove_mapping(unsigned int addr); 22 void qemu_trace_process_name(const char *name); 23