VirtualBox

source: vbox/trunk/src/VBox/Main/include/ConsoleImpl.h@ 8155

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

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 20.1 KB
Line 
1/** @file
2 *
3 * VBox Console COM Class definition
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ____H_CONSOLEIMPL
23#define ____H_CONSOLEIMPL
24
25#include "VirtualBoxBase.h"
26#include "ProgressImpl.h"
27
28class Guest;
29class Keyboard;
30class Mouse;
31class Display;
32class MachineDebugger;
33class OUSBDevice;
34class RemoteUSBDevice;
35class SharedFolder;
36class RemoteDisplayInfo;
37class AudioSniffer;
38class ConsoleVRDPServer;
39class VMMDev;
40
41#include <VBox/vrdpapi.h>
42#include <VBox/pdmdrv.h>
43
44struct VUSBIRHCONFIG;
45typedef struct VUSBIRHCONFIG *PVUSBIRHCONFIG;
46
47#include <list>
48
49// defines
50///////////////////////////////////////////////////////////////////////////////
51
52/**
53 * Checks the availability of the underlying VM device driver corresponding
54 * to the COM interface (IKeyboard, IMouse, IDisplay, etc.). When the driver is
55 * not available (NULL), sets error info and returns returns E_ACCESSDENIED.
56 * The translatable error message is defined in null context.
57 *
58 * Intended to used only within Console children (i,e. Keyboard, Mouse,
59 * Display, etc.).
60 *
61 * @param drv driver pointer to check (compare it with NULL)
62 */
63#define CHECK_CONSOLE_DRV(drv) \
64 do { \
65 if (!(drv)) \
66 return setError (E_ACCESSDENIED, tr ("The console is not powered up")); \
67 } while (0)
68
69/** @def VBOX_WITH_UNIXY_TAP_NETWORKING
70 * Unixy style TAP networking. This is defined in the Makefile since it's also
71 * used by NetworkAdapterImpl.h/cpp.
72 */
73#ifdef __DOXYGEN__
74# define VBOX_WITH_UNIXY_TAP_NETWORKING
75#endif
76
77// Console
78///////////////////////////////////////////////////////////////////////////////
79
80/** IConsole implementation class */
81class ATL_NO_VTABLE Console :
82 public VirtualBoxBaseWithChildrenNEXT,
83 public VirtualBoxSupportErrorInfoImpl <Console, IConsole>,
84 public VirtualBoxSupportTranslation <Console>,
85 public IConsole
86{
87 Q_OBJECT
88
89public:
90
91 DECLARE_NOT_AGGREGATABLE(Console)
92
93 DECLARE_PROTECT_FINAL_CONSTRUCT()
94
95 BEGIN_COM_MAP(Console)
96 COM_INTERFACE_ENTRY(ISupportErrorInfo)
97 COM_INTERFACE_ENTRY(IConsole)
98 END_COM_MAP()
99
100 NS_DECL_ISUPPORTS
101
102 Console();
103 ~Console();
104
105 HRESULT FinalConstruct();
106 void FinalRelease();
107
108 // public initializers/uninitializers for internal purposes only
109 HRESULT init (IMachine *aMachine, IInternalMachineControl *aControl);
110 void uninit();
111
112 // IConsole properties
113 STDMETHOD(COMGETTER(Machine)) (IMachine **aMachine);
114 STDMETHOD(COMGETTER(State)) (MachineState_T *aMachineState);
115 STDMETHOD(COMGETTER(Guest)) (IGuest **aGuest);
116 STDMETHOD(COMGETTER(Keyboard)) (IKeyboard **aKeyboard);
117 STDMETHOD(COMGETTER(Mouse)) (IMouse **aMouse);
118 STDMETHOD(COMGETTER(Display)) (IDisplay **aDisplay);
119 STDMETHOD(COMGETTER(Debugger)) (IMachineDebugger **aDebugger);
120 STDMETHOD(COMGETTER(USBDevices)) (IUSBDeviceCollection **aUSBDevices);
121 STDMETHOD(COMGETTER(RemoteUSBDevices)) (IHostUSBDeviceCollection **aRemoteUSBDevices);
122 STDMETHOD(COMGETTER(RemoteDisplayInfo)) (IRemoteDisplayInfo **aRemoteDisplayInfo);
123 STDMETHOD(COMGETTER(SharedFolders)) (ISharedFolderCollection **aSharedFolders);
124
125 // IConsole methods
126 STDMETHOD(PowerUp) (IProgress **aProgress);
127 STDMETHOD(PowerDown)();
128 STDMETHOD(Reset)();
129 STDMETHOD(Pause)();
130 STDMETHOD(Resume)();
131 STDMETHOD(PowerButton)();
132 STDMETHOD(SleepButton)();
133 STDMETHOD(GetPowerButtonHandled)(BOOL *aHandled);
134 STDMETHOD(SaveState) (IProgress **aProgress);
135 STDMETHOD(AdoptSavedState) (INPTR BSTR aSavedStateFile);
136 STDMETHOD(DiscardSavedState)();
137 STDMETHOD(GetDeviceActivity) (DeviceType_T aDeviceType,
138 DeviceActivity_T *aDeviceActivity);
139 STDMETHOD(AttachUSBDevice) (INPTR GUIDPARAM aId);
140 STDMETHOD(DetachUSBDevice) (INPTR GUIDPARAM aId, IUSBDevice **aDevice);
141 STDMETHOD(CreateSharedFolder) (INPTR BSTR aName, INPTR BSTR aHostPath, BOOL aWritable);
142 STDMETHOD(RemoveSharedFolder) (INPTR BSTR aName);
143 STDMETHOD(TakeSnapshot) (INPTR BSTR aName, INPTR BSTR aDescription,
144 IProgress **aProgress);
145 STDMETHOD(DiscardSnapshot) (INPTR GUIDPARAM aId, IProgress **aProgress);
146 STDMETHOD(DiscardCurrentState) (IProgress **aProgress);
147 STDMETHOD(DiscardCurrentSnapshotAndState) (IProgress **aProgress);
148 STDMETHOD(RegisterCallback) (IConsoleCallback *aCallback);
149 STDMETHOD(UnregisterCallback)(IConsoleCallback *aCallback);
150
151 // public methods for internal purposes only
152
153 /*
154 * Note: the following methods do not increase refcount. intended to be
155 * called only by the VM execution thread.
156 */
157
158 Guest *getGuest() { return mGuest; }
159 Keyboard *getKeyboard() { return mKeyboard; }
160 Mouse *getMouse() { return mMouse; }
161 Display *getDisplay() { return mDisplay; }
162 MachineDebugger *getMachineDebugger() { return mDebugger; }
163
164 const ComPtr <IMachine> &machine() { return mMachine; }
165
166 /** Method is called only from ConsoleVRDPServer */
167 IVRDPServer *getVRDPServer() { return mVRDPServer; }
168
169 ConsoleVRDPServer *consoleVRDPServer() { return mConsoleVRDPServer; }
170
171 HRESULT updateMachineState (MachineState_T aMachineState);
172
173 // events from IInternalSessionControl
174 HRESULT onDVDDriveChange();
175 HRESULT onFloppyDriveChange();
176 HRESULT onNetworkAdapterChange (INetworkAdapter *aNetworkAdapter);
177 HRESULT onSerialPortChange (ISerialPort *aSerialPort);
178 HRESULT onParallelPortChange (IParallelPort *aParallelPort);
179 HRESULT onVRDPServerChange();
180 HRESULT onUSBControllerChange();
181 HRESULT onSharedFolderChange (BOOL aGlobal);
182 HRESULT onUSBDeviceAttach (IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs);
183 HRESULT onUSBDeviceDetach (INPTR GUIDPARAM aId, IVirtualBoxErrorInfo *aError);
184
185 VMMDev *getVMMDev() { return mVMMDev; }
186 AudioSniffer *getAudioSniffer () { return mAudioSniffer; }
187
188 int VRDPClientLogon (uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain);
189 void VRDPClientConnect (uint32_t u32ClientId);
190 void VRDPClientDisconnect (uint32_t u32ClientId, uint32_t fu32Intercepted);
191 void VRDPInterceptAudio (uint32_t u32ClientId);
192 void VRDPInterceptUSB (uint32_t u32ClientId, void **ppvIntercept);
193 void VRDPInterceptClipboard (uint32_t u32ClientId);
194
195 void processRemoteUSBDevices (uint32_t u32ClientId, VRDPUSBDEVICEDESC *pDevList, uint32_t cbDevList);
196
197 // callback callers (partly; for some events console callbacks are notified
198 // directly from IInternalSessionControl event handlers declared above)
199 void onMousePointerShapeChange(bool fVisible, bool fAlpha,
200 uint32_t xHot, uint32_t yHot,
201 uint32_t width, uint32_t height,
202 void *pShape);
203 void onMouseCapabilityChange (BOOL supportsAbsolute, BOOL needsHostCursor);
204 void onStateChange (MachineState_T aMachineState);
205 void onAdditionsStateChange();
206 void onAdditionsOutdated();
207 void onKeyboardLedsChange (bool fNumLock, bool fCapsLock, bool fScrollLock);
208 void onUSBDeviceStateChange (IUSBDevice *aDevice, bool aAttached,
209 IVirtualBoxErrorInfo *aError);
210 void onRuntimeError (BOOL aFatal, INPTR BSTR aErrorID, INPTR BSTR aMessage);
211 HRESULT onShowWindow (BOOL aCheck, BOOL *aCanShow, ULONG64 *aWinId);
212
213 static const PDMDRVREG DrvStatusReg;
214
215 void reportAuthLibraryError (const char *filename, int rc)
216 {
217 setError (E_FAIL, tr("Could not load the external authentication library '%s' (%Vrc)"), filename, rc);
218 }
219
220 // for VirtualBoxSupportErrorInfoImpl
221 static const wchar_t *getComponentName() { return L"Console"; }
222
223private:
224
225 /**
226 * Base template for AutoVMCaller and SaveVMPtr. Template arguments
227 * have the same meaning as arguments of Console::addVMCaller().
228 */
229 template <bool taQuiet = false, bool taAllowNullVM = false>
230 class AutoVMCallerBase
231 {
232 public:
233 AutoVMCallerBase (Console *aThat) : mThat (aThat), mRC (S_OK)
234 {
235 Assert (aThat);
236 mRC = aThat->addVMCaller (taQuiet, taAllowNullVM);
237 }
238 ~AutoVMCallerBase()
239 {
240 if (SUCCEEDED (mRC))
241 mThat->releaseVMCaller();
242 }
243 /** Decreases the number of callers before the instance is destroyed. */
244 void release()
245 {
246 AssertReturnVoid (SUCCEEDED (mRC));
247 mThat->releaseVMCaller();
248 mRC = E_FAIL;
249 }
250 /** Restores the number of callers after by #release(). #rc() must be
251 * rechecked to ensure the operation succeeded. */
252 void add()
253 {
254 AssertReturnVoid (!SUCCEEDED (mRC));
255 mRC = mThat->addVMCaller (taQuiet, taAllowNullVM);
256 }
257 /** Returns the result of Console::addVMCaller() */
258 HRESULT rc() const { return mRC; }
259 /** Shortcut to SUCCEEDED (rc()) */
260 bool isOk() const { return SUCCEEDED (mRC); }
261 protected:
262 Console *mThat;
263 HRESULT mRC;
264 private:
265 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (AutoVMCallerBase)
266 DECLARE_CLS_NEW_DELETE_NOOP (AutoVMCallerBase)
267 };
268
269 /**
270 * Helper class that protects sections of code using the mpVM pointer by
271 * automatically calling addVMCaller() on construction and
272 * releaseVMCaller() on destruction. Intended for Console methods dealing
273 * with mpVM. The usage pattern is:
274 * <code>
275 * AutoVMCaller autoVMCaller (this);
276 * CheckComRCReturnRC (autoVMCaller.rc());
277 * ...
278 * VMR3ReqCall (mpVM, ...
279 * </code>
280 *
281 * @sa SafeVMPtr, SafeVMPtrQuiet
282 */
283 typedef AutoVMCallerBase <false, false> AutoVMCaller;
284
285 /**
286 * Same as AutoVMCaller but doesn't set extended error info on failure.
287 */
288 typedef AutoVMCallerBase <true, false> AutoVMCallerQuiet;
289
290 /**
291 * Same as AutoVMCaller but allows a null VM pointer (to trigger an error
292 * instead of assertion).
293 */
294 typedef AutoVMCallerBase <false, true> AutoVMCallerWeak;
295
296 /**
297 * Same as AutoVMCaller but doesn't set extended error info on failure
298 * and allows a null VM pointer (to trigger an error instead of
299 * assertion).
300 */
301 typedef AutoVMCallerBase <true, true> AutoVMCallerQuietWeak;
302
303 /**
304 * Base template for SaveVMPtr and SaveVMPtrQuiet.
305 */
306 template <bool taQuiet = false>
307 class SafeVMPtrBase : public AutoVMCallerBase <taQuiet, true>
308 {
309 typedef AutoVMCallerBase <taQuiet, true> Base;
310 public:
311 SafeVMPtrBase (Console *aThat) : Base (aThat), mpVM (NULL)
312 {
313 if (SUCCEEDED (Base::mRC))
314 mpVM = aThat->mpVM;
315 }
316 /** Smart SaveVMPtr to PVM cast operator */
317 operator PVM() const { return mpVM; }
318 /** Direct PVM access for printf()-like functions */
319 PVM raw() const { return mpVM; }
320 private:
321 PVM mpVM;
322 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (SafeVMPtrBase)
323 DECLARE_CLS_NEW_DELETE_NOOP (SafeVMPtrBase)
324 };
325
326public:
327
328 /**
329 * Helper class that safely manages the Console::mpVM pointer
330 * by calling addVMCaller() on construction and releaseVMCaller() on
331 * destruction. Intended for Console children. The usage pattern is:
332 * <code>
333 * Console::SaveVMPtr pVM (mParent);
334 * CheckComRCReturnRC (pVM.rc());
335 * ...
336 * VMR3ReqCall (pVM, ...
337 * ...
338 * printf ("%p\n", pVM.raw());
339 * </code>
340 *
341 * @sa SafeVMPtrQuiet, AutoVMCaller
342 */
343 typedef SafeVMPtrBase <false> SafeVMPtr;
344
345 /**
346 * A deviation of SaveVMPtr that doesn't set the error info on failure.
347 * Intenede for pieces of code that don't need to return the VM access
348 * failure to the caller. The usage pattern is:
349 * <code>
350 * Console::SaveVMPtrQuiet pVM (mParent);
351 * if (pVM.rc())
352 * VMR3ReqCall (pVM, ...
353 * return S_OK;
354 * </code>
355 *
356 * @sa SafeVMPtr, AutoVMCaller
357 */
358 typedef SafeVMPtrBase <true> SafeVMPtrQuiet;
359
360 class SharedFolderData
361 {
362 public:
363 SharedFolderData() {}
364 SharedFolderData(Bstr aHostPath, BOOL aWritable)
365 : mHostPath (aHostPath)
366 , mWritable (aWritable) {}
367 SharedFolderData(const SharedFolderData& aThat)
368 : mHostPath (aThat.mHostPath)
369 , mWritable (aThat.mWritable) {}
370 Bstr mHostPath;
371 BOOL mWritable;
372 };
373 typedef std::map <Bstr, ComObjPtr <SharedFolder> > SharedFolderMap;
374 typedef std::map <Bstr, SharedFolderData> SharedFolderDataMap;
375
376private:
377
378 typedef std::list <ComObjPtr <OUSBDevice> > USBDeviceList;
379 typedef std::list <ComObjPtr <RemoteUSBDevice> > RemoteUSBDeviceList;
380
381 HRESULT addVMCaller (bool aQuiet = false, bool aAllowNullVM = false);
382 void releaseVMCaller();
383
384 HRESULT consoleInitReleaseLog (const ComPtr <IMachine> aMachine);
385
386 HRESULT powerDown();
387
388 HRESULT callTapSetupApplication(bool isStatic, RTFILE tapFD, Bstr &tapDevice,
389 Bstr &tapSetupApplication);
390 HRESULT attachToHostInterface(INetworkAdapter *networkAdapter);
391 HRESULT detachFromHostInterface(INetworkAdapter *networkAdapter);
392 HRESULT powerDownHostInterfaces();
393
394 HRESULT setMachineState (MachineState_T aMachineState, bool aUpdateServer = true);
395 HRESULT setMachineStateLocally (MachineState_T aMachineState)
396 {
397 return setMachineState (aMachineState, false /* aUpdateServer */);
398 }
399
400 HRESULT findSharedFolder (const BSTR aName,
401 ComObjPtr <SharedFolder> &aSharedFolder,
402 bool aSetError = false);
403
404 HRESULT fetchSharedFolders (BOOL aGlobal);
405 bool findOtherSharedFolder (INPTR BSTR aName,
406 SharedFolderDataMap::const_iterator &aIt);
407
408 HRESULT createSharedFolder (INPTR BSTR aName, SharedFolderData aData);
409 HRESULT removeSharedFolder (INPTR BSTR aName);
410
411 static DECLCALLBACK(int) configConstructor(PVM pVM, void *pvConsole);
412 static DECLCALLBACK(void) vmstateChangeCallback(PVM aVM, VMSTATE aState,
413 VMSTATE aOldState, void *aUser);
414 HRESULT doDriveChange (const char *pszDevice, unsigned uInstance,
415 unsigned uLun, DriveState_T eState,
416 DriveState_T *peState, const char *pszPath,
417 bool fPassthrough);
418 static DECLCALLBACK(int) changeDrive (Console *pThis, const char *pszDevice,
419 unsigned uInstance, unsigned uLun,
420 DriveState_T eState, DriveState_T *peState,
421 const char *pszPath, bool fPassthrough);
422
423#ifdef VBOX_WITH_USB
424 HRESULT attachUSBDevice (IUSBDevice *aHostDevice, ULONG aMaskedIfs);
425 HRESULT detachUSBDevice (USBDeviceList::iterator &aIt);
426
427 static DECLCALLBACK(int)
428 usbAttachCallback (Console *that, IUSBDevice *aHostDevice, PCRTUUID aUuid,
429 bool aRemote, const char *aAddress, ULONG aMaskedIfs);
430 static DECLCALLBACK(int)
431 usbDetachCallback (Console *that, USBDeviceList::iterator *aIt, PCRTUUID aUuid);
432#endif
433
434 static DECLCALLBACK (int)
435 stateProgressCallback (PVM pVM, unsigned uPercent, void *pvUser);
436
437 static DECLCALLBACK(void)
438 setVMErrorCallback (PVM pVM, void *pvUser, int rc, RT_SRC_POS_DECL,
439 const char *pszFormat, va_list args);
440
441 static DECLCALLBACK(void)
442 setVMRuntimeErrorCallback (PVM pVM, void *pvUser, bool fFatal,
443 const char *pszErrorID,
444 const char *pszFormat, va_list args);
445
446 HRESULT captureUSBDevices (PVM pVM);
447 void detachAllUSBDevices (bool aDone);
448
449 static DECLCALLBACK (int) powerUpThread (RTTHREAD Thread, void *pvUser);
450 static DECLCALLBACK (int) saveStateThread (RTTHREAD Thread, void *pvUser);
451 static DECLCALLBACK (int) powerDownThread (RTTHREAD Thread, void *pvUser);
452
453 static DECLCALLBACK(void *) drvStatus_QueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
454 static DECLCALLBACK(void) drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN);
455 static DECLCALLBACK(void) drvStatus_Destruct(PPDMDRVINS pDrvIns);
456 static DECLCALLBACK(int) drvStatus_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
457
458 int mcAudioRefs;
459 volatile uint32_t mcVRDPClients;
460
461 static const char *sSSMConsoleUnit;
462 static uint32_t sSSMConsoleVer;
463
464 HRESULT loadDataFromSavedState();
465
466 static DECLCALLBACK(void) saveStateFileExec (PSSMHANDLE pSSM, void *pvUser);
467 static DECLCALLBACK(int) loadStateFileExec (PSSMHANDLE pSSM, void *pvUser, uint32_t u32Version);
468
469 bool mSavedStateDataLoaded : 1;
470
471 const ComPtr <IMachine> mMachine;
472 const ComPtr <IInternalMachineControl> mControl;
473
474 const ComPtr <IVRDPServer> mVRDPServer;
475 const ComPtr <IDVDDrive> mDVDDrive;
476 const ComPtr <IFloppyDrive> mFloppyDrive;
477
478 ConsoleVRDPServer * const mConsoleVRDPServer;
479
480 const ComObjPtr <Guest> mGuest;
481 const ComObjPtr <Keyboard> mKeyboard;
482 const ComObjPtr <Mouse> mMouse;
483 const ComObjPtr <Display> mDisplay;
484 const ComObjPtr <MachineDebugger> mDebugger;
485 const ComObjPtr <RemoteDisplayInfo> mRemoteDisplayInfo;
486
487 USBDeviceList mUSBDevices;
488 RemoteUSBDeviceList mRemoteUSBDevices;
489
490 SharedFolderMap mSharedFolders;
491 SharedFolderDataMap mMachineSharedFolders;
492 SharedFolderDataMap mGlobalSharedFolders;
493
494 /** The VM instance handle. */
495 PVM mpVM;
496 /** Holds the number of "readonly" mpVM callers (users) */
497 uint32_t mVMCallers;
498 /** Semaphore posted when the number of mpVM callers drops to zero */
499 RTSEMEVENT mVMZeroCallersSem;
500 /** true when Console has entered the mpVM destruction phase */
501 bool mVMDestroying : 1;
502
503 /** The current DVD drive state in the VM.
504 * This does not have to match the state maintained in the DVD. */
505 DriveState_T meDVDState;
506 /** The current Floppy drive state in the VM.
507 * This does not have to match the state maintained in the Floppy. */
508 DriveState_T meFloppyState;
509
510 VMMDev * const mVMMDev;
511 AudioSniffer * const mAudioSniffer;
512
513 PPDMLED mapFDLeds[2];
514 PPDMLED mapIDELeds[4];
515 PPDMLED mapSATALeds[30];
516 PPDMLED mapNetworkLeds[8];
517 PPDMLED mapSharedFolderLed;
518 PPDMLED mapUSBLed[2];
519#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
520 Utf8Str maTAPDeviceName[8];
521 RTFILE maTapFD[8];
522#endif
523
524 bool mVMStateChangeCallbackDisabled;
525
526 /* Local machine state value */
527 MachineState_T mMachineState;
528
529 typedef std::list <ComPtr <IConsoleCallback> > CallbackList;
530 CallbackList mCallbacks;
531
532 struct
533 {
534 /** OnMousePointerShapeChange() cache */
535 struct
536 {
537 bool valid;
538 bool visible;
539 bool alpha;
540 uint32_t xHot;
541 uint32_t yHot;
542 uint32_t width;
543 uint32_t height;
544 BYTE *shape;
545 size_t shapeSize;
546 }
547 mpsc;
548
549 /** OnMouseCapabilityChange() cache */
550 struct
551 {
552 bool valid;
553 BOOL supportsAbsolute;
554 BOOL needsHostCursor;
555 }
556 mcc;
557
558 /** OnKeyboardLedsChange() cache */
559 struct
560 {
561 bool valid;
562 bool numLock;
563 bool capsLock;
564 bool scrollLock;
565 }
566 klc;
567 }
568 mCallbackData;
569
570 friend struct VMTask;
571};
572
573#endif // ____H_CONSOLEIMPL
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