diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-03-27 16:05:08 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-04-15 20:14:52 +0000 |
commit | 17a4663e2dddbac36126a6fd7048634a4c95fa6e (patch) | |
tree | 73297471bd89ff1bdde9dd50b875875f601b26c2 /cpus.h | |
parent | 70c3b5575ee3e0d528aa176c8c5add3e7355c01e (diff) |
Move CPU related functions to cpus.h
Move declarations of CPU related functions to cpus.h. Adjust the only user.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'cpus.h')
-rw-r--r-- | cpus.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8,6 +8,10 @@ void resume_all_vcpus(void); void pause_all_vcpus(void); void cpu_stop_current(void); +void cpu_synchronize_all_states(void); +void cpu_synchronize_all_post_reset(void); +void cpu_synchronize_all_post_init(void); + /* vl.c */ extern int smp_cores; extern int smp_threads; |