VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxBFE/MachineDebuggerImpl.h@ 35740

Last change on this file since 35740 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1/** @file
2 *
3 * VBox frontends: Basic Frontend (BFE):
4 * Declaration of MachineDebugger class
5 */
6
7/*
8 * Copyright (C) 2006-2007 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ____H_MACHINEDEBUGGER
20#define ____H_MACHINEDEBUGGER
21
22class MachineDebugger
23{
24public:
25
26
27 MachineDebugger ();
28 virtual ~MachineDebugger () {};
29
30 // IMachineDebugger properties
31 STDMETHOD(COMGETTER(Singlestep))(BOOL *enabled);
32 STDMETHOD(COMSETTER(Singlestep))(BOOL enable);
33 STDMETHOD(COMGETTER(RecompileUser))(BOOL *enabled);
34 STDMETHOD(COMSETTER(RecompileUser))(BOOL enable);
35 STDMETHOD(COMGETTER(RecompileSupervisor))(BOOL *enabled);
36 STDMETHOD(COMSETTER(RecompileSupervisor))(BOOL enable);
37 STDMETHOD(COMGETTER(PATMEnabled))(BOOL *enabled);
38 STDMETHOD(COMSETTER(PATMEnabled))(BOOL enable);
39 STDMETHOD(COMGETTER(CSAMEnabled))(BOOL *enabled);
40 STDMETHOD(COMSETTER(CSAMEnabled))(BOOL enable);
41
42 // IMachineDebugger methods
43
44 // "public-private methods"
45 void flushQueuedSettings();
46
47private:
48 // flags whether settings have been queued because
49 // they could not be sent to the VM (not up yet, etc.)
50 int singlestepQueued;
51 int recompileUserQueued;
52 int recompileSupervisorQueued;
53 int patmEnabledQueued;
54 int csamEnabledQueued;
55 bool fFlushMode;
56};
57
58
59extern MachineDebugger *gMachineDebugger;
60
61#endif // ____H_MACHINEDEBUGGER
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use