aboutsummaryrefslogtreecommitdiffstats
path: root/tools/debugger/gdbsx/gx/gx.h
blob: 47594c3696200be7b30b4eed602456ba2e559d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * Copyright (C) 2009, Mukesh Rathor, Oracle Corp.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

typedef uint16_t domid_t;
typedef unsigned char uchar;

#include "../xg/xg_public.h"

int gx_remote_open (char *commstr);
void gx_remote_close(void);
int gx_getpkt (char *buf);
void gx_write_ok(char *buf);
void gx_write_err(char *buf);
void gx_convert_int_to_ascii (char *from, char *to, int n);
void gx_convert_ascii_to_int (char *from, char *to, int n);
int gx_putpkt (char *buf);
void gx_decode_m_packet(char *, uint64_t *, int *);
char *gx_decode_M_packet(char *, uint64_t *, int *);
void gx_decode_zZ_packet(char *, uint64_t *);
void gx_reply_ok(char *);
void gx_reply_error(char *);
int gx_fromhex(int);
int gx_tohex(int);
int gx_local_cmd(domid_t domid, vcpuid_t vcpuid);
void gxprt(const char *fmt, ...);