- Timestamp:
- Mar 1, 2023 4:38:03 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156126
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r98103 r98807 1838 1838 { 1839 1839 int ret; 1840 1841 *pFd = -1; /* silence compiler warnings from -Wmaybe-uninitialized */ 1840 1842 int rc = strioctl(pVNode, _I_MUXID2FD, (intptr_t)MuxId, 0, K_TO_K, kcred, &ret); 1841 1843 if (!rc) -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r98706 r98807 8500 8500 /* setup host core dumper for the VM */ 8501 8501 Bstr value; 8502 HRESULThrc = mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpEnabled").raw(), value.asOutParam());8502 hrc = mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpEnabled").raw(), value.asOutParam()); 8503 8503 if (SUCCEEDED(hrc) && value == "1") 8504 8504 { -
trunk/src/VBox/Main/src-server/solaris/PerformanceSolaris.cpp
r98292 r98807 389 389 int CollectorSolaris::getRawHostNetworkLoad(const char *name, uint64_t *rx, uint64_t *tx) 390 390 { 391 #if ARCH_BITS == 32 391 392 static bool g_fNotReported = true; 393 #endif 392 394 AssertReturn(strlen(name) < KSTAT_STRLEN, VERR_INVALID_PARAMETER); 393 395 LogFlowThisFunc(("m=%s i=%d n=%s\n", "link", -1, name));
Note:
See TracChangeset
for help on using the changeset viewer.