VirtualBox

source: vbox/trunk/src/VBox/Debugger/VBoxDbgBase.cpp@ 3481

Last change on this file since 3481 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/** @file
2 *
3 * VBox Debugger GUI - Base class.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#include <VBox/err.h>
27#include <iprt/assert.h>
28#include "VBoxDbgBase.h"
29
30
31
32VBoxDbgBase::VBoxDbgBase(PVM pVM) : m_pVM(pVM)
33{
34 /*
35 * Register
36 */
37 int rc = VMR3AtStateRegister(pVM, atStateChange, this);
38 AssertRC(rc);
39}
40
41VBoxDbgBase::~VBoxDbgBase()
42{
43 /*
44 * If the VM is still around.
45 */
46 if (m_pVM)
47 {
48 int rc = VMR3AtStateDeregister(m_pVM, atStateChange, this);
49 AssertRC(rc);
50 m_pVM = NULL;
51 }
52}
53
54int VBoxDbgBase::stamReset(const char *pszPat)
55{
56 if (m_pVM)
57 return STAMR3Reset(m_pVM, pszPat);
58 return VERR_INVALID_HANDLE;
59}
60
61int VBoxDbgBase::stamEnum(const char *pszPat, PFNSTAMR3ENUM pfnEnum, void *pvUser)
62{
63 if (m_pVM)
64 return STAMR3Enum(m_pVM, pszPat, pfnEnum, pvUser);
65 return VERR_INVALID_HANDLE;
66}
67
68int VBoxDbgBase::dbgcCreate(PDBGCBACK pBack, unsigned fFlags)
69{
70 if (m_pVM)
71 return DBGCCreate(m_pVM, pBack, fFlags);
72 return VERR_INVALID_HANDLE;
73}
74
75/*static*/ DECLCALLBACK(void) VBoxDbgBase::atStateChange(PVM /*pVM*/, VMSTATE enmState, VMSTATE /*enmOldState*/, void *pvUser)
76{
77 VBoxDbgBase *pThis = (VBoxDbgBase *)pvUser;
78 switch (enmState)
79 {
80 case VMSTATE_TERMINATED:
81 pThis->sigTerminated();
82 pThis->m_pVM = NULL;
83 break;
84
85 default:
86 break;
87 }
88}
89
90void VBoxDbgBase::sigTerminated()
91{
92}
93
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette