btrace: honour scheduler-locking for all-stop targets
[deliverable/binutils-gdb.git] / sim / arm / dbg_conf.h
CommitLineData
c906108c
SS
1/* dbg_conf.h -- ARMulator debug interface: ARM6 Instruction Emulator.
2 Copyright (C) 1994 Advanced RISC Machines Ltd.
454de2ee 3
c906108c
SS
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
3fd725ef 6 the Free Software Foundation; either version 3 of the License, or
c906108c 7 (at your option) any later version.
454de2ee 8
c906108c
SS
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
454de2ee 13
c906108c 14 You should have received a copy of the GNU General Public License
51b318de 15 along with this program; if not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
16
17#ifndef Dbg_Conf__h
c906108c
SS
18#define Dbg_Conf__h
19
dfcd3bfb
JM
20typedef struct Dbg_ConfigBlock
21{
22 int bytesex;
23 long memorysize;
24 int serialport; /*) remote connection parameters */
25 int seriallinespeed; /*) (serial connection) */
26 int parallelport; /*) ditto */
27 int parallellinespeed; /*) (parallel connection) */
28 int processor; /* processor the armulator is to emulate (eg ARM60) */
29 int rditype; /* armulator / remote processor */
30 int drivertype; /* parallel / serial / etc */
31 char const *configtoload;
32 int flags;
33}
34Dbg_ConfigBlock;
c906108c
SS
35
36#define Dbg_ConfigFlag_Reset 1
37
38typedef struct Dbg_HostosInterface Dbg_HostosInterface;
39/* This structure allows access by the (host-independent) C-library support
40 module of armulator or pisd (armos.c) to host-dependent functions for
41 which there is no host-independent interface. Its contents are unknown
42 to the debugger toolbox.
43 The assumption is that, in a windowed system, fputc(stderr) for example
44 may not achieve the desired effect of the character appearing in some
45 window.
46 */
47
48#endif
This page took 0.660015 seconds and 4 git commands to generate.