trace-control.c (30e7d092b26146eb2abb77e0a0952aea012e36bf) | trace-control.c (2bfe11c8fac96db4f94abbe818fbc964a6744130) |
---|---|
1/* 2 * Interface for configuring and controlling the state of tracing events. 3 * 4 * Copyright (C) 2014-2016 Lluís Vilanova <vilanova@ac.upc.edu> 5 * 6 * This work is licensed under the terms of the GNU GPL, version 2 or later. 7 * See the COPYING file in the top-level directory. 8 */ --- 30 unchanged lines hidden (view full) --- 39} 40 41void trace_event_set_vcpu_state_dynamic(CPUState *vcpu, 42 TraceEvent *ev, bool state) 43{ 44 /* should never be called on non-target binaries */ 45 abort(); 46} | 1/* 2 * Interface for configuring and controlling the state of tracing events. 3 * 4 * Copyright (C) 2014-2016 Lluís Vilanova <vilanova@ac.upc.edu> 5 * 6 * This work is licensed under the terms of the GNU GPL, version 2 or later. 7 * See the COPYING file in the top-level directory. 8 */ --- 30 unchanged lines hidden (view full) --- 39} 40 41void trace_event_set_vcpu_state_dynamic(CPUState *vcpu, 42 TraceEvent *ev, bool state) 43{ 44 /* should never be called on non-target binaries */ 45 abort(); 46} |
47 48void trace_init_vcpu(CPUState *vcpu) 49{ 50 /* should never be called on non-target binaries */ 51 abort(); 52} |
|