Changeset 24758 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 18, 2009 12:57:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGLSupportInfo.cpp
r24694 r24758 579 579 rc = RTProcCreate(pszVBoxPath, papszArgs, RTENV_DEFAULT, 0, &Process); 580 580 if (RT_FAILURE(rc)) 581 { 582 VBOXQGLLOGREL(("2D support test failed: failed to create a test process\n")); 581 583 return false; 584 } 582 585 583 586 StartTS = RTTimeMilliTS(); … … 594 597 RTThreadSleep(100); 595 598 RTProcWait(Process, RTPROCWAIT_FLAGS_NOBLOCK, &ProcStatus); 599 VBOXQGLLOGREL(("2D support test failed: the test did not complete within 30 sec\n")); 596 600 return false; 597 601 } … … 603 607 if ((ProcStatus.enmReason==RTPROCEXITREASON_NORMAL) && (ProcStatus.iStatus==0)) 604 608 { 609 VBOXQGLLOGREL(("2D support test succeeded\n")); 605 610 return true; 606 611 } 607 612 } 613 614 VBOXQGLLOGREL(("2D support test failed: err code (%Rra)\n", rc)); 608 615 609 616 return false;
Note:
See TracChangeset
for help on using the changeset viewer.