- Timestamp:
- Jul 13, 2009 2:57:51 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/common/err
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r21337 r21542 5 5 6 6 /* 7 * Copyright (C) 2006-200 7Sun 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 … … 110 110 #endif 111 111 #ifdef EBUSY 112 case EBUSY: return VERR_ DEV_IO_ERROR; /**@todo fix duplicate error */112 case EBUSY: return VERR_RESOURCE_BUSY; 113 113 #endif 114 114 #ifdef EEXIST -
trunk/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp
r21337 r21542 1 /* $ Rev$ */1 /* $Id$ */ 2 2 /** @file 3 3 * IPRT - Convert iprt status codes to errno. … … 5 5 6 6 /* 7 * Copyright (C) 2007 Sun Microsystems, Inc.7 * Copyright (C) 2007-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 112 112 #endif 113 113 #ifdef EBUSY 114 //case VERR_DEV_IO_ERROR:return EBUSY;114 case VERR_RESOURCE_BUSY: return EBUSY; 115 115 #endif 116 116 #ifdef EEXIST
Note:
See TracChangeset
for help on using the changeset viewer.