mirror of
https://github.com/qemu/qemu.git
synced 2025-08-17 07:16:28 +00:00

This patch replaces the license header for those files that were either GPL v2-or-v3, or GPL v2-only; the replacing license is GPL v2-or-later. The code for task switching/handling, which is derived from KVM and hence is GPL v2-only, is isolated in the new files (with this license) x86_task.c/.h, and the corresponding compilation rule is added to target/i386/hvf-utils/Makefile.objs. Signed-off-by: Sergio Andres Gomez Del Real <Sergio.G.DelReal@gmail.com> Message-Id: <20170913090522.4022-4-Sergio.G.DelReal@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
40 lines
1.5 KiB
C
40 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2016 Veertu Inc,
|
|
* Copyright (C) 2017 Google Inc,
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef X86HVF_H
|
|
#define X86HVF_H
|
|
#include "cpu.h"
|
|
#include "x86_descr.h"
|
|
|
|
int hvf_process_events(CPUState *);
|
|
int hvf_put_registers(CPUState *);
|
|
int hvf_get_registers(CPUState *);
|
|
bool hvf_inject_interrupts(CPUState *);
|
|
void hvf_set_segment(struct CPUState *cpu, struct vmx_segment *vmx_seg,
|
|
SegmentCache *qseg, bool is_tr);
|
|
void hvf_get_segment(SegmentCache *qseg, struct vmx_segment *vmx_seg);
|
|
void hvf_put_xsave(CPUState *cpu_state);
|
|
void hvf_put_segments(CPUState *cpu_state);
|
|
void hvf_put_msrs(CPUState *cpu_state);
|
|
void hvf_get_xsave(CPUState *cpu_state);
|
|
void hvf_get_msrs(CPUState *cpu_state);
|
|
void vmx_clear_int_window_exiting(CPUState *cpu);
|
|
void hvf_get_segments(CPUState *cpu_state);
|
|
void vmx_update_tpr(CPUState *cpu);
|
|
void hvf_cpu_synchronize_state(CPUState *cpu_state);
|
|
#endif
|