diff options
author | Ian Jackson <ian.jackson@eu.citrix.com> | 2018-03-09 12:02:50 +0000 |
---|---|---|
committer | Ian Jackson <Ian.Jackson@eu.citrix.com> | 2018-04-26 16:29:50 +0100 |
commit | 7a64c17f3b3015bf741593a019538275c764455f (patch) | |
tree | 09c3edbbe780fe0efb2049a58f18322a61e8b23a /vl.c | |
parent | 5ac067a24a85fec57d2d87b2d12ae4ffa6aa2d9e (diff) |
AccelClass: Introduce accel_setup_post
This is called just before os_setup_post. Currently none of the
accelerators provide this hook, but the Xen one is going to provide
one in a moment.
Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4742,6 +4742,7 @@ int main(int argc, char **argv, char **envp) vm_start(); } + accel_setup_post(current_machine); os_setup_post(); main_loop(); |