Changeset 3931 in vbox for trunk/src/VBox
- Timestamp:
- Jul 31, 2007 7:39:09 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvTAP.cpp
r2981 r3931 50 50 #ifdef ASYNC_NET 51 51 #include <unistd.h> 52 #endif 53 54 #ifdef RT_OS_L4 55 #include <l4/vboxserver/file.h> 52 56 #endif 53 57 … … 566 570 */ 567 571 int fds[2]; 572 #ifdef RT_OS_L4 573 /* XXX We need to tell the library which interface we are using */ 574 fds[0] = vboxrtLinuxFd2VBoxFd(VBOXRT_FT_TAP, 0); 575 #endif 568 576 if (pipe(&fds[0]) != 0) /** @todo RTPipeCreate() or something... */ 569 577 {
Note:
See TracChangeset
for help on using the changeset viewer.