- Timestamp:
- Jul 31, 2020 3:44:35 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r84500 r85580 486 486 * This exact meaning is host platform dependent. */ 487 487 #define VERR_FILE_AIO_INSUFFICIENT_EVENTS (-146) 488 /** The native file handle got stale while it was open. Can occur with 489 * files on network shares when the server is unresponsive. */ 490 #define VERR_STALE_FILE_HANDLE (-147) 488 491 /** @} */ 489 492 -
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r82968 r85580 400 400 #endif 401 401 #ifdef ESTALE 402 //case ESTALE 116 /*Stale NFS file handle */402 case ESTALE return VERR_STALE_FILE_HANDLE; /* 116: Stale NFS file handle */ 403 403 #endif 404 404 #ifdef EUCLEAN
Note:
See TracChangeset
for help on using the changeset viewer.