~ubuntu-branches/ubuntu/wily/qemu-kvm-spice/wily

« back to all changes in this revision

Viewing changes to cpus.h

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-10-19 10:44:56 UTC
  • Revision ID: james.westby@ubuntu.com-20111019104456-xgvskumk3sxi97f4
Tags: upstream-0.15.0+noroms
ImportĀ upstreamĀ versionĀ 0.15.0+noroms

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef QEMU_CPUS_H
 
2
#define QEMU_CPUS_H
 
3
 
 
4
/* cpus.c */
 
5
int qemu_init_main_loop(void);
 
6
void qemu_main_loop_start(void);
 
7
void resume_all_vcpus(void);
 
8
void pause_all_vcpus(void);
 
9
void cpu_stop_current(void);
 
10
bool qemu_system_is_ready(void);
 
11
 
 
12
void cpu_synchronize_all_states(void);
 
13
void cpu_synchronize_all_post_reset(void);
 
14
void cpu_synchronize_all_post_init(void);
 
15
 
 
16
/* vl.c */
 
17
extern int smp_cores;
 
18
extern int smp_threads;
 
19
void vm_state_notify(int running, int reason);
 
20
bool cpu_exec_all(void);
 
21
void set_numa_modes(void);
 
22
void set_cpu_log(const char *optarg);
 
23
void set_cpu_log_filename(const char *optarg);
 
24
void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg);
 
25
 
 
26
#endif