Merge remote-tracking branch 'score/develop' into tizen-arm
[sdk/emulator/qemu.git] / hax-stub.c
1 /*
2  *  HAX stubs
3  *
4  *  Copyright (C) 2012 Samsung Electronics Co Ltd.
5  *
6  *  This program is free software; you can redistribute it and/or modify it
7  *  under the terms of the GNU General Public License as published by the
8  *  Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful, but WITHOUT
12  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  *  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14  *  for more details.
15  *
16  *  You should have received a copy of the GNU General Public License along
17  *  with this program; if not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "hax.h"
22
23 int hax_sync_vcpus(void)
24 {
25     return 0;
26 }
27
28 int hax_accel_init(void)
29 {
30    return 0;
31 }
32
33 void hax_disable(int disable)
34 {
35    return;
36 }
37
38 int hax_pre_init(ram_addr_t ram_size)
39 {
40    return 0;
41 }
42
43 int hax_enabled(void)
44 {
45    return 0;
46 }
47
48 void qemu_notify_hax_event(void)
49 {
50    return;
51 }