xref: /qemu/stubs/target-get-monitor-def.c (revision c80f6e9c)
10a9516c2SAlexey Kardashevskiy /*
20a9516c2SAlexey Kardashevskiy  *  Stub for target_get_monitor_def.
30a9516c2SAlexey Kardashevskiy  *
40a9516c2SAlexey Kardashevskiy  *  Copyright IBM Corp., 2015
50a9516c2SAlexey Kardashevskiy  *
60a9516c2SAlexey Kardashevskiy  *  Author: Alexey Kardashevskiy <aik@ozlabs.ru>
70a9516c2SAlexey Kardashevskiy  *
80a9516c2SAlexey Kardashevskiy  *  This program is free software; you can redistribute it and/or modify
90a9516c2SAlexey Kardashevskiy  *  it under the terms of the GNU General Public License as published by
100a9516c2SAlexey Kardashevskiy  *  the Free Software Foundation; either version 2 of the License,
110a9516c2SAlexey Kardashevskiy  *  or (at your option) any later version.
120a9516c2SAlexey Kardashevskiy  *
130a9516c2SAlexey Kardashevskiy  *  This program is distributed in the hope that it will be useful,
140a9516c2SAlexey Kardashevskiy  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
150a9516c2SAlexey Kardashevskiy  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
160a9516c2SAlexey Kardashevskiy  *  GNU General Public License for more details.
170a9516c2SAlexey Kardashevskiy  *
180a9516c2SAlexey Kardashevskiy  *  You should have received a copy of the GNU General Public License
190a9516c2SAlexey Kardashevskiy  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
200a9516c2SAlexey Kardashevskiy  */
210a9516c2SAlexey Kardashevskiy 
22*87c9b5e0SPeter Maydell #include "qemu/osdep.h"
230a9516c2SAlexey Kardashevskiy 
240a9516c2SAlexey Kardashevskiy int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval);
250a9516c2SAlexey Kardashevskiy 
target_get_monitor_def(CPUState * cs,const char * name,uint64_t * pval)260a9516c2SAlexey Kardashevskiy int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval)
270a9516c2SAlexey Kardashevskiy {
280a9516c2SAlexey Kardashevskiy     return -1;
290a9516c2SAlexey Kardashevskiy }
30