Changeset 26362 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Feb 9, 2010 1:20:03 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57455
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r25260 r26362 50 50 #else 51 51 # define SUPLIB_DLL_SUFF ".so" 52 #endif 53 54 #ifdef RT_OS_SOLARIS 55 /** Number of dummy files to open (2:ip4, 1:ip6, 1:extra) see #4650 */ 56 #define SUPLIB_FLT_DUMMYFILES 4 52 57 #endif 53 58 … … 188 193 /** Indicates whether madvise(,,MADV_DONTFORK) works. */ 189 194 bool fSysMadviseWorks; 195 #elif defined(RT_OS_SOLARIS) 196 /** Extra dummy file descriptors to prevent growing file-descriptor table on clean up (see #4650) */ 197 int hDummy[SUPLIB_FLT_DUMMYFILES]; 190 198 #elif defined(RT_OS_WINDOWS) 191 199 #endif -
trunk/src/VBox/HostDrivers/Support/solaris/SUPLib-solaris.cpp
r23834 r26362 82 82 return VINF_SUCCESS; 83 83 84 #ifdef VBOXFLT_DUMMYFILES 85 /* 86 * Open dummy files to preallocate file descriptors, see #4650. 87 */ 88 for (int i = 0; i < VBOXFLT_DUMMYFILES; i++) 89 { 90 int hDummy = open("/dev/null", O_RDWR, 0); 91 fcntl(hDummy, F_SETFD, FD_CLOEXEC); 92 if (hDummy >= 0) 93 pThis->hDummy[i] = hDummy; 94 else 95 { 96 pThis->hDummy[i] = -1; 97 LogRel(("Failed to open[%d] /dev/null! errno=%d\n", i, errno)); 98 } 99 } 100 #endif 84 101 85 102 /* … … 127 144 int suplibOsTerm(PSUPLIBDATA pThis) 128 145 { 146 #ifdef VBOXFLT_DUMMYFILES 147 /* 148 * Close the dummy files first. 149 */ 150 for (int i = 0; i < VBOXFLT_DUMMYFILES; i++) 151 { 152 if (pThis->hDummy[i] != -1) 153 { 154 close(pThis->hDummy[i]); 155 pThis->hDummy[i] = -1; 156 } 157 } 158 #endif 159 129 160 /* 130 161 * Check if we're initialized
Note:
See TracChangeset
for help on using the changeset viewer.