Changeset 4871 in vbox for trunk/src/VBox/HostDrivers/Support/darwin
- Timestamp:
- Sep 17, 2007 8:08:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPLib-darwin.cpp
r4811 r4871 134 134 135 135 /* 136 * Mark the file handle close on exec. 137 */ 138 if (fcntl(g_hDevice, F_SETFD, FD_CLOEXEC) != 0) 139 { 140 int rc = errno; 141 LogRel(("suplibOSInit: setting FD_CLOEXEC failed, errno=%d\n", errno)); 142 close(g_hDevice); 143 g_hDevice = -1; 144 return RTErrConvertFromErrno(rc); 145 } 146 147 /* 136 148 * We're done. 137 149 */
Note:
See TracChangeset
for help on using the changeset viewer.