Changeset 28886 in vbox
- Timestamp:
- Apr 29, 2010 10:04:53 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/linux/HostHardwareLinux.cpp
r28882 r28886 1246 1246 ~inotifyWatch(void) 1247 1247 { 1248 close(mhInotify); 1248 if (mhInotify != -1) 1249 { 1250 close(mhInotify); 1251 mhInotify = -1; 1252 } 1249 1253 } 1250 1254 … … 1438 1442 /** This would probably be a pending segfault, so die cleanly */ 1439 1443 AssertRelease(!mfWaiting); 1440 close(mhWakeupPipeR); 1441 mhWakeupPipeR = -1; 1442 close(mhWakeupPipeW); 1443 mhWakeupPipeW = -1; 1444 if (mhWakeupPipeR != -1) 1445 { 1446 close(mhWakeupPipeR); 1447 mhWakeupPipeR = -1; 1448 } 1449 if (mhWakeupPipeW != -1) 1450 { 1451 close(mhWakeupPipeW); 1452 mhWakeupPipeW = -1; 1453 } 1444 1454 } 1445 1455
Note:
See TracChangeset
for help on using the changeset viewer.