Don't look up pid/tid on YAGL_LOG_FUNC_SET
[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 "sysemu/hax.h"
22
23 bool hax_allowed;
24
25 int hax_sync_vcpus(void)
26 {
27     return 0;
28 }
29
30 int hax_accel_init(uint64_t ram_size)
31 {
32    return -ENOSYS;
33 }
34
35 int hax_ug_platform(void)
36 {
37     return 0;
38 }