Changeset 22981 in vbox
- Timestamp:
- Sep 13, 2009 10:09:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFile.cpp
r22978 r22981 5 5 6 6 /* 7 * Copyright (C) 2006-200 8Sun Microsystems, Inc.7 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 21 21 22 22 23 24 23 /******************************************************************************* 25 24 * Header Files * … … 31 30 #include <VBox/vm.h> 32 31 #include <VBox/err.h> 33 34 32 #include <VBox/log.h> 33 35 34 #include <iprt/asm.h> 36 35 #include <iprt/assert.h> 37 #include <iprt/thread.h> 36 #include <iprt/critsect.h> 37 #include <iprt/env.h> 38 #include <iprt/file.h> 38 39 #include <iprt/mem.h> 39 #include <iprt/critsect.h>40 #include <iprt/file.h>41 40 #include <iprt/semaphore.h> 42 41 #include <iprt/string.h> 42 #include <iprt/thread.h> 43 43 44 44 #include "PDMAsyncCompletionFileInternal.h" … … 52 52 */ 53 53 void pdmacFileTaskFree(PPDMASYNCCOMPLETIONENDPOINTFILE pEndpoint, 54 54 PPDMACTASKFILE pTask) 55 55 { 56 56 PPDMASYNCCOMPLETIONEPCLASSFILE pEpClass = (PPDMASYNCCOMPLETIONEPCLASSFILE)pEndpoint->Core.pEpClass; … … 503 503 504 504 rc = RTFileAioGetLimits(&AioLimits); 505 #ifdef DEBUG 506 if (RT_SUCCESS(rc) && RTEnvExist("VBOX_ASYNC_IO_FAILBACK")) 507 rc = VERR_ENV_VAR_NOT_FOUND; 508 #endif 505 509 if (RT_FAILURE(rc)) 506 510 {
Note:
See TracChangeset
for help on using the changeset viewer.