Changeset 18329 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Mar 26, 2009 5:20:09 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/common/err
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r16808 r18329 437 437 case EPROCLIM: return VERR_MAX_PROCS_REACHED; 438 438 #endif 439 #ifdef EDOOFUS 440 case EDOOFUS: return VERR_INTERNAL_ERROR; 441 #endif 439 442 440 443 default: -
trunk/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp
r17951 r18329 439 439 case VERR_MAX_PROCS_REACHED: return EPROCLIM; 440 440 #endif 441 #ifdef EDOOFUS 442 case VERR_INTERNAL_ERROR: 443 case VERR_INTERNAL_ERROR_2: 444 case VERR_INTERNAL_ERROR_3: return EDOOFUS; 445 #endif 441 446 442 447 default: 448 /* The idea here is that if you hit this, you will have to 449 translate the status code yourself. */ 443 450 AssertMsgFailed(("Unhandled error code %Rrc\n", iErr)); 444 451 #ifdef EPROTO
Note:
See TracChangeset
for help on using the changeset viewer.