Changeset 32593 in vbox
- Timestamp:
- Sep 17, 2010 11:37:50 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r32570 r32593 2724 2724 char szOsRelease[128]; 2725 2725 rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szOsRelease, sizeof(szOsRelease)); 2726 bool fKernelHasODirectBug = RT_FAILURE(rc) || RTStrVersionCompare(szOsRelease, "2.6.36") < 0; 2726 bool fKernelHasODirectBug = RT_FAILURE(rc) 2727 || (RTStrVersionCompare(szOsRelease, "2.6.36-rc4") < 0); 2727 2728 2728 2729 if ( (uCaps & MediumFormatCapabilities_Asynchronous)
Note:
See TracChangeset
for help on using the changeset viewer.