VirtualBox

source: vbox/trunk/src/VBox/Main/MachineDebuggerImpl.cpp@ 16560

Last change on this file since 16560 was 15827, checked in by vboxsync, 15 years ago

#3285: Improve error handling API to include unique error numbers

  • return E_FAIL when !pVM.isOk() like GetStats does.
  • Move InjectNMI() from the accessors down to the methods for consistency.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.7 KB
Line 
1/* $Id: MachineDebuggerImpl.cpp 15827 2009-01-07 10:22:15Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2008 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#include "MachineDebuggerImpl.h"
25
26#include "Global.h"
27#include "ConsoleImpl.h"
28#include "Logging.h"
29
30#include <VBox/em.h>
31#include <VBox/patm.h>
32#include <VBox/csam.h>
33#include <VBox/vm.h>
34#include <VBox/tm.h>
35#include <VBox/err.h>
36#include <VBox/hwaccm.h>
37
38// defines
39/////////////////////////////////////////////////////////////////////////////
40
41
42// globals
43/////////////////////////////////////////////////////////////////////////////
44
45
46// constructor / destructor
47/////////////////////////////////////////////////////////////////////////////
48
49DEFINE_EMPTY_CTOR_DTOR (MachineDebugger)
50
51HRESULT MachineDebugger::FinalConstruct()
52{
53 unconst (mParent) = NULL;
54 return S_OK;
55}
56
57void MachineDebugger::FinalRelease()
58{
59 uninit();
60}
61
62// public initializer/uninitializer for internal purposes only
63/////////////////////////////////////////////////////////////////////////////
64
65/**
66 * Initializes the machine debugger object.
67 *
68 * @returns COM result indicator
69 * @param aParent handle of our parent object
70 */
71HRESULT MachineDebugger::init (Console *aParent)
72{
73 LogFlowThisFunc (("aParent=%p\n", aParent));
74
75 ComAssertRet (aParent, E_INVALIDARG);
76
77 /* Enclose the state transition NotReady->InInit->Ready */
78 AutoInitSpan autoInitSpan (this);
79 AssertReturn (autoInitSpan.isOk(), E_FAIL);
80
81 unconst (mParent) = aParent;
82
83 mSinglestepQueued = ~0;
84 mRecompileUserQueued = ~0;
85 mRecompileSupervisorQueued = ~0;
86 mPatmEnabledQueued = ~0;
87 mCsamEnabledQueued = ~0;
88 mLogEnabledQueued = ~0;
89 mVirtualTimeRateQueued = ~0;
90 mFlushMode = false;
91
92 /* Confirm a successful initialization */
93 autoInitSpan.setSucceeded();
94
95 return S_OK;
96}
97
98/**
99 * Uninitializes the instance and sets the ready flag to FALSE.
100 * Called either from FinalRelease() or by the parent when it gets destroyed.
101 */
102void MachineDebugger::uninit()
103{
104 LogFlowThisFunc (("\n"));
105
106 /* Enclose the state transition Ready->InUninit->NotReady */
107 AutoUninitSpan autoUninitSpan (this);
108 if (autoUninitSpan.uninitDone())
109 return;
110
111 unconst (mParent).setNull();
112 mFlushMode = false;
113}
114
115// IMachineDebugger properties
116/////////////////////////////////////////////////////////////////////////////
117
118/**
119 * Returns the current singlestepping flag.
120 *
121 * @returns COM status code
122 * @param aEnabled address of result variable
123 */
124STDMETHODIMP MachineDebugger::COMGETTER(Singlestep) (BOOL *aEnabled)
125{
126 CheckComArgOutPointerValid(aEnabled);
127
128 AutoCaller autoCaller (this);
129 CheckComRCReturnRC (autoCaller.rc());
130
131 /** @todo */
132 ReturnComNotImplemented();
133}
134
135/**
136 * Sets the singlestepping flag.
137 *
138 * @returns COM status code
139 * @param aEnable new singlestepping flag
140 */
141STDMETHODIMP MachineDebugger::COMSETTER(Singlestep) (BOOL aEnable)
142{
143 AutoCaller autoCaller (this);
144 CheckComRCReturnRC (autoCaller.rc());
145
146 /** @todo */
147 ReturnComNotImplemented();
148}
149
150/**
151 * Returns the current recompile user mode code flag.
152 *
153 * @returns COM status code
154 * @param aEnabled address of result variable
155 */
156STDMETHODIMP MachineDebugger::COMGETTER(RecompileUser) (BOOL *aEnabled)
157{
158 CheckComArgOutPointerValid(aEnabled);
159
160 AutoCaller autoCaller (this);
161 CheckComRCReturnRC (autoCaller.rc());
162
163 AutoReadLock alock (this);
164
165 Console::SafeVMPtrQuiet pVM (mParent);
166
167 if (pVM.isOk())
168 *aEnabled = !EMIsRawRing3Enabled (pVM.raw());
169 else
170 *aEnabled = false;
171
172 return S_OK;
173}
174
175/**
176 * Sets the recompile user mode code flag.
177 *
178 * @returns COM status
179 * @param aEnable new user mode code recompile flag.
180 */
181STDMETHODIMP MachineDebugger::COMSETTER(RecompileUser) (BOOL aEnable)
182{
183 LogFlowThisFunc (("enable=%d\n", aEnable));
184
185 AutoCaller autoCaller (this);
186 CheckComRCReturnRC (autoCaller.rc());
187
188 AutoWriteLock alock (this);
189
190 if (queueSettings())
191 {
192 // queue the request
193 mRecompileUserQueued = aEnable;
194 return S_OK;
195 }
196
197 Console::SafeVMPtr pVM (mParent);
198 CheckComRCReturnRC (pVM.rc());
199
200 PVMREQ pReq;
201 EMRAWMODE rawModeFlag = aEnable ? EMRAW_RING3_DISABLE : EMRAW_RING3_ENABLE;
202 int rcVBox = VMR3ReqCall (pVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT,
203 (PFNRT)EMR3RawSetMode, 2, pVM.raw(), rawModeFlag);
204 if (RT_SUCCESS (rcVBox))
205 {
206 rcVBox = pReq->iStatus;
207 VMR3ReqFree (pReq);
208 }
209
210 if (RT_SUCCESS (rcVBox))
211 return S_OK;
212
213 AssertMsgFailed (("Could not set raw mode flags to %d, rcVBox = %Rrc\n",
214 rawModeFlag, rcVBox));
215 return E_FAIL;
216}
217
218/**
219 * Returns the current recompile supervisor code flag.
220 *
221 * @returns COM status code
222 * @param aEnabled address of result variable
223 */
224STDMETHODIMP MachineDebugger::COMGETTER(RecompileSupervisor) (BOOL *aEnabled)
225{
226 CheckComArgOutPointerValid(aEnabled);
227
228 AutoCaller autoCaller (this);
229 CheckComRCReturnRC (autoCaller.rc());
230
231 AutoReadLock alock (this);
232
233 Console::SafeVMPtrQuiet pVM (mParent);
234
235 if (pVM.isOk())
236 *aEnabled = !EMIsRawRing0Enabled (pVM.raw());
237 else
238 *aEnabled = false;
239
240 return S_OK;
241}
242
243/**
244 * Sets the new recompile supervisor code flag.
245 *
246 * @returns COM status code
247 * @param aEnable new recompile supervisor code flag
248 */
249STDMETHODIMP MachineDebugger::COMSETTER(RecompileSupervisor) (BOOL aEnable)
250{
251 LogFlowThisFunc (("enable=%d\n", aEnable));
252
253 AutoCaller autoCaller (this);
254 CheckComRCReturnRC (autoCaller.rc());
255
256 AutoWriteLock alock (this);
257
258 if (queueSettings())
259 {
260 // queue the request
261 mRecompileSupervisorQueued = aEnable;
262 return S_OK;
263 }
264
265 Console::SafeVMPtr pVM (mParent);
266 CheckComRCReturnRC (pVM.rc());
267
268 PVMREQ pReq;
269 EMRAWMODE rawModeFlag = aEnable ? EMRAW_RING0_DISABLE : EMRAW_RING0_ENABLE;
270 int rcVBox = VMR3ReqCall (pVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT,
271 (PFNRT)EMR3RawSetMode, 2, pVM.raw(), rawModeFlag);
272 if (RT_SUCCESS (rcVBox))
273 {
274 rcVBox = pReq->iStatus;
275 VMR3ReqFree (pReq);
276 }
277
278 if (RT_SUCCESS (rcVBox))
279 return S_OK;
280
281 AssertMsgFailed (("Could not set raw mode flags to %d, rcVBox = %Rrc\n",
282 rawModeFlag, rcVBox));
283 return E_FAIL;
284}
285
286/**
287 * Returns the current patch manager enabled flag.
288 *
289 * @returns COM status code
290 * @param aEnabled address of result variable
291 */
292STDMETHODIMP MachineDebugger::COMGETTER(PATMEnabled) (BOOL *aEnabled)
293{
294 CheckComArgOutPointerValid(aEnabled);
295
296 AutoCaller autoCaller (this);
297 CheckComRCReturnRC (autoCaller.rc());
298
299 AutoReadLock alock (this);
300
301 Console::SafeVMPtrQuiet pVM (mParent);
302
303 if (pVM.isOk())
304 *aEnabled = PATMIsEnabled (pVM.raw());
305 else
306 *aEnabled = false;
307
308 return S_OK;
309}
310
311/**
312 * Set the new patch manager enabled flag.
313 *
314 * @returns COM status code
315 * @param aEnable new patch manager enabled flag
316 */
317STDMETHODIMP MachineDebugger::COMSETTER(PATMEnabled) (BOOL aEnable)
318{
319 LogFlowThisFunc (("enable=%d\n", aEnable));
320
321 AutoCaller autoCaller (this);
322 CheckComRCReturnRC (autoCaller.rc());
323
324 AutoWriteLock alock (this);
325
326 if (queueSettings())
327 {
328 // queue the request
329 mPatmEnabledQueued = aEnable;
330 return S_OK;
331 }
332
333 Console::SafeVMPtr pVM (mParent);
334 CheckComRCReturnRC (pVM.rc());
335
336 PATMR3AllowPatching (pVM, aEnable);
337
338 return S_OK;
339}
340
341/**
342 * Returns the current code scanner enabled flag.
343 *
344 * @returns COM status code
345 * @param aEnabled address of result variable
346 */
347STDMETHODIMP MachineDebugger::COMGETTER(CSAMEnabled) (BOOL *aEnabled)
348{
349 CheckComArgOutPointerValid(aEnabled);
350
351 AutoCaller autoCaller (this);
352 CheckComRCReturnRC (autoCaller.rc());
353
354 AutoReadLock alock (this);
355
356 Console::SafeVMPtrQuiet pVM (mParent);
357
358 if (pVM.isOk())
359 *aEnabled = CSAMIsEnabled (pVM.raw());
360 else
361 *aEnabled = false;
362
363 return S_OK;
364}
365
366/**
367 * Sets the new code scanner enabled flag.
368 *
369 * @returns COM status code
370 * @param aEnable new code scanner enabled flag
371 */
372STDMETHODIMP MachineDebugger::COMSETTER(CSAMEnabled) (BOOL aEnable)
373{
374 LogFlowThisFunc (("enable=%d\n", aEnable));
375
376 AutoCaller autoCaller (this);
377 CheckComRCReturnRC (autoCaller.rc());
378
379 AutoWriteLock alock (this);
380
381 if (queueSettings())
382 {
383 // queue the request
384 mCsamEnabledQueued = aEnable;
385 return S_OK;
386 }
387
388 Console::SafeVMPtr pVM (mParent);
389 CheckComRCReturnRC (pVM.rc());
390
391 int vrc;
392 if (aEnable)
393 vrc = CSAMEnableScanning (pVM);
394 else
395 vrc = CSAMDisableScanning (pVM);
396
397 if (RT_FAILURE (vrc))
398 {
399 /** @todo handle error case */
400 }
401
402 return S_OK;
403}
404
405/**
406 * Returns the log enabled / disabled status.
407 *
408 * @returns COM status code
409 * @param aEnabled address of result variable
410 */
411STDMETHODIMP MachineDebugger::COMGETTER(LogEnabled) (BOOL *aEnabled)
412{
413 CheckComArgOutPointerValid(aEnabled);
414
415 AutoCaller autoCaller (this);
416 CheckComRCReturnRC (autoCaller.rc());
417
418#ifdef LOG_ENABLED
419 AutoReadLock alock (this);
420
421 const PRTLOGGER pLogInstance = RTLogDefaultInstance();
422 *aEnabled = pLogInstance && !(pLogInstance->fFlags & RTLOGFLAGS_DISABLED);
423#else
424 *aEnabled = false;
425#endif
426
427 return S_OK;
428}
429
430/**
431 * Enables or disables logging.
432 *
433 * @returns COM status code
434 * @param aEnabled The new code log state.
435 */
436STDMETHODIMP MachineDebugger::COMSETTER(LogEnabled) (BOOL aEnabled)
437{
438 LogFlowThisFunc (("aEnabled=%d\n", aEnabled));
439
440 AutoCaller autoCaller (this);
441 CheckComRCReturnRC (autoCaller.rc());
442
443 AutoWriteLock alock (this);
444
445 if (queueSettings())
446 {
447 // queue the request
448 mLogEnabledQueued = aEnabled;
449 return S_OK;
450 }
451
452 Console::SafeVMPtr pVM (mParent);
453 CheckComRCReturnRC (pVM.rc());
454
455#ifdef LOG_ENABLED
456 int vrc = DBGFR3LogModifyFlags (pVM, aEnabled ? "enabled" : "disabled");
457 if (RT_FAILURE (vrc))
458 {
459 /** @todo handle error code. */
460 }
461#endif
462
463 return S_OK;
464}
465
466/**
467 * Returns the current hardware virtualization flag.
468 *
469 * @returns COM status code
470 * @param aEnabled address of result variable
471 */
472STDMETHODIMP MachineDebugger::COMGETTER(HWVirtExEnabled) (BOOL *aEnabled)
473{
474 CheckComArgOutPointerValid(aEnabled);
475
476 AutoCaller autoCaller (this);
477 CheckComRCReturnRC (autoCaller.rc());
478
479 AutoReadLock alock (this);
480
481 Console::SafeVMPtrQuiet pVM (mParent);
482
483 if (pVM.isOk())
484 *aEnabled = HWACCMIsEnabled (pVM.raw());
485 else
486 *aEnabled = false;
487
488 return S_OK;
489}
490
491/**
492 * Returns the current nested paging flag.
493 *
494 * @returns COM status code
495 * @param aEnabled address of result variable
496 */
497STDMETHODIMP MachineDebugger::COMGETTER(HWVirtExNestedPagingEnabled) (BOOL *aEnabled)
498{
499 CheckComArgOutPointerValid(aEnabled);
500
501 AutoCaller autoCaller (this);
502 CheckComRCReturnRC (autoCaller.rc());
503
504 AutoReadLock alock (this);
505
506 Console::SafeVMPtrQuiet pVM (mParent);
507
508 if (pVM.isOk())
509 *aEnabled = HWACCMR3IsNestedPagingActive (pVM.raw());
510 else
511 *aEnabled = false;
512
513 return S_OK;
514}
515
516/**
517 * Returns the current VPID flag.
518 *
519 * @returns COM status code
520 * @param aEnabled address of result variable
521 */
522STDMETHODIMP MachineDebugger::COMGETTER(HWVirtExVPIDEnabled) (BOOL *aEnabled)
523{
524 CheckComArgOutPointerValid(aEnabled);
525
526 AutoCaller autoCaller (this);
527 CheckComRCReturnRC (autoCaller.rc());
528
529 AutoReadLock alock (this);
530
531 Console::SafeVMPtrQuiet pVM (mParent);
532
533 if (pVM.isOk())
534 *aEnabled = HWACCMR3IsVPIDActive (pVM.raw());
535 else
536 *aEnabled = false;
537
538 return S_OK;
539}
540
541/**
542 * Returns the current PAE flag.
543 *
544 * @returns COM status code
545 * @param aEnabled address of result variable
546 */
547STDMETHODIMP MachineDebugger::COMGETTER(PAEEnabled) (BOOL *aEnabled)
548{
549 CheckComArgOutPointerValid(aEnabled);
550
551 AutoCaller autoCaller (this);
552 CheckComRCReturnRC (autoCaller.rc());
553
554 AutoReadLock alock (this);
555
556 Console::SafeVMPtrQuiet pVM (mParent);
557
558 if (pVM.isOk())
559 {
560 uint64_t cr4 = CPUMGetGuestCR4 (pVM.raw());
561 *aEnabled = !!(cr4 & X86_CR4_PAE);
562 }
563 else
564 *aEnabled = false;
565
566 return S_OK;
567}
568
569/**
570 * Returns the current virtual time rate.
571 *
572 * @returns COM status code.
573 * @param aPct Where to store the rate.
574 */
575STDMETHODIMP MachineDebugger::COMGETTER(VirtualTimeRate) (ULONG *aPct)
576{
577 CheckComArgOutPointerValid(aPct);
578
579 AutoCaller autoCaller (this);
580 CheckComRCReturnRC (autoCaller.rc());
581
582 AutoReadLock alock (this);
583
584 Console::SafeVMPtrQuiet pVM (mParent);
585
586 if (pVM.isOk())
587 *aPct = TMVirtualGetWarpDrive (pVM);
588 else
589 *aPct = 100;
590
591 return S_OK;
592}
593
594/**
595 * Returns the current virtual time rate.
596 *
597 * @returns COM status code.
598 * @param aPct Where to store the rate.
599 */
600STDMETHODIMP MachineDebugger::COMSETTER(VirtualTimeRate) (ULONG aPct)
601{
602 if (aPct < 2 || aPct > 20000)
603 return E_INVALIDARG;
604
605 AutoCaller autoCaller (this);
606 CheckComRCReturnRC (autoCaller.rc());
607
608 AutoWriteLock alock (this);
609
610 if (queueSettings())
611 {
612 // queue the request
613 mVirtualTimeRateQueued = aPct;
614 return S_OK;
615 }
616
617 Console::SafeVMPtr pVM (mParent);
618 CheckComRCReturnRC (pVM.rc());
619
620 int vrc = TMVirtualSetWarpDrive (pVM, aPct);
621 if (RT_FAILURE (vrc))
622 {
623 /** @todo handle error code. */
624 }
625
626 return S_OK;
627}
628
629/**
630 * Hack for getting the VM handle.
631 * This is only temporary (promise) while prototyping the debugger.
632 *
633 * @returns COM status code
634 * @param aVm Where to store the vm handle.
635 * Since there is no uintptr_t in COM, we're using the max integer.
636 * (No, ULONG is not pointer sized!)
637 */
638STDMETHODIMP MachineDebugger::COMGETTER(VM) (ULONG64 *aVm)
639{
640 CheckComArgOutPointerValid(aVm);
641
642 AutoCaller autoCaller (this);
643 CheckComRCReturnRC (autoCaller.rc());
644
645 AutoReadLock alock (this);
646
647 Console::SafeVMPtr pVM (mParent);
648 CheckComRCReturnRC (pVM.rc());
649
650 *aVm = (uintptr_t)pVM.raw();
651
652 /*
653 * Note: pVM protection provided by SafeVMPtr is no more effective
654 * after we return from this method.
655 */
656
657 return S_OK;
658}
659
660// IMachineDebugger methods
661/////////////////////////////////////////////////////////////////////////////
662
663/**
664 * Resets VM statistics.
665 *
666 * @returns COM status code.
667 * @param aPattern The selection pattern. A bit similar to filename globbing.
668 */
669STDMETHODIMP MachineDebugger::ResetStats (IN_BSTR aPattern)
670{
671 Console::SafeVMPtrQuiet pVM (mParent);
672
673 if (!pVM.isOk())
674 return E_FAIL;
675
676 STAMR3Reset (pVM, Utf8Str (aPattern).raw());
677
678 return S_OK;
679}
680
681/**
682 * Dumps VM statistics to the log.
683 *
684 * @returns COM status code.
685 * @param aPattern The selection pattern. A bit similar to filename globbing.
686 */
687STDMETHODIMP MachineDebugger::DumpStats (IN_BSTR aPattern)
688{
689 Console::SafeVMPtrQuiet pVM (mParent);
690
691 if (!pVM.isOk())
692 return E_FAIL;
693
694 STAMR3Dump (pVM, Utf8Str (aPattern).raw());
695
696 return S_OK;
697}
698
699/**
700 * Get the VM statistics in an XML format.
701 *
702 * @returns COM status code.
703 * @param aPattern The selection pattern. A bit similar to filename globbing.
704 * @param aWithDescriptions Whether to include the descriptions.
705 * @param aStats The XML document containing the statistics.
706 */
707STDMETHODIMP MachineDebugger::GetStats (IN_BSTR aPattern, BOOL aWithDescriptions, BSTR *aStats)
708{
709 Console::SafeVMPtrQuiet pVM (mParent);
710
711 if (!pVM.isOk())
712 return E_FAIL;
713
714 char *pszSnapshot;
715 int vrc = STAMR3Snapshot (pVM, Utf8Str (aPattern).raw(), &pszSnapshot, NULL,
716 !!aWithDescriptions);
717 if (RT_FAILURE (vrc))
718 return vrc == VERR_NO_MEMORY ? E_OUTOFMEMORY : E_FAIL;
719
720 /** @todo this is horribly inefficient! And it's kinda difficult to tell whether it failed...
721 * Must use UTF-8 or ASCII here and completely avoid these two extra copy operations.
722 * Until that's done, this method is kind of useless for debugger statistics GUI because
723 * of the amount statistics in a debug build. */
724 Bstr (pszSnapshot).cloneTo (aStats);
725
726 return S_OK;
727}
728
729/**
730 * Set the new patch manager enabled flag.
731 *
732 * @returns COM status code
733 * @param new patch manager enabled flag
734 */
735STDMETHODIMP MachineDebugger::InjectNMI()
736{
737 LogFlowThisFunc ((""));
738
739 AutoCaller autoCaller (this);
740 CheckComRCReturnRC (autoCaller.rc());
741
742 AutoWriteLock alock (this);
743
744 Console::SafeVMPtr pVM (mParent);
745 CheckComRCReturnRC (pVM.rc());
746
747 HWACCMR3InjectNMI(pVM);
748
749 return S_OK;
750}
751
752
753// public methods only for internal purposes
754/////////////////////////////////////////////////////////////////////////////
755
756void MachineDebugger::flushQueuedSettings()
757{
758 mFlushMode = true;
759 if (mSinglestepQueued != ~0)
760 {
761 COMSETTER(Singlestep) (mSinglestepQueued);
762 mSinglestepQueued = ~0;
763 }
764 if (mRecompileUserQueued != ~0)
765 {
766 COMSETTER(RecompileUser) (mRecompileUserQueued);
767 mRecompileUserQueued = ~0;
768 }
769 if (mRecompileSupervisorQueued != ~0)
770 {
771 COMSETTER(RecompileSupervisor) (mRecompileSupervisorQueued);
772 mRecompileSupervisorQueued = ~0;
773 }
774 if (mPatmEnabledQueued != ~0)
775 {
776 COMSETTER(PATMEnabled) (mPatmEnabledQueued);
777 mPatmEnabledQueued = ~0;
778 }
779 if (mCsamEnabledQueued != ~0)
780 {
781 COMSETTER(CSAMEnabled) (mCsamEnabledQueued);
782 mCsamEnabledQueued = ~0;
783 }
784 if (mLogEnabledQueued != ~0)
785 {
786 COMSETTER(LogEnabled) (mLogEnabledQueued);
787 mLogEnabledQueued = ~0;
788 }
789 if (mVirtualTimeRateQueued != ~(uint32_t)0)
790 {
791 COMSETTER(VirtualTimeRate) (mVirtualTimeRateQueued);
792 mVirtualTimeRateQueued = ~0;
793 }
794 mFlushMode = false;
795}
796
797// private methods
798/////////////////////////////////////////////////////////////////////////////
799
800bool MachineDebugger::queueSettings() const
801{
802 if (!mFlushMode)
803 {
804 // check if the machine is running
805 MachineState_T machineState;
806 mParent->COMGETTER(State) (&machineState);
807 if (!Global::IsActive (machineState))
808 // queue the request
809 return true;
810 }
811 return false;
812}
813/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use