Changeset 54970 in vbox for trunk/src/VBox/Runtime/r3/linux
- Timestamp:
- Mar 26, 2015 3:57:35 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/fileaio-linux.cpp
r45678 r54970 5 5 6 6 /* 7 * Copyright (C) 2006-201 1Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 231 231 int rc = syscall(__NR_io_setup, cEvents, pAioContext); 232 232 if (RT_UNLIKELY(rc == -1)) 233 return RTErrConvertFromErrno(errno); 233 { 234 if (errno == EAGAIN) 235 return VERR_FILE_AIO_INSUFFICIENT_EVENTS; 236 else 237 return RTErrConvertFromErrno(errno); 238 } 234 239 235 240 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.