- Timestamp:
- Dec 3, 2008 1:36:42 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r14772 r14942 1417 1417 STDMETHODIMP Display::RegisterExternalFramebuffer (IFramebuffer *frameBuf) 1418 1418 { 1419 1419 LogFlowFunc (("\n")); 1420 1420 1421 1421 if (!frameBuf) -
trunk/src/VBox/Main/FramebufferImpl.cpp
r14772 r14942 237 237 return E_POINTER; 238 238 239 240 241 242 243 239 /// @todo 240 241 NOREF(rects); 242 NOREF(aCount); 243 NOREF(aCountCopied); 244 244 245 245 return S_OK; … … 253 253 return E_POINTER; 254 254 255 256 257 258 255 /// @todo 256 257 NOREF(rects); 258 NOREF(aCount); 259 259 260 260 return S_OK; -
trunk/src/VBox/Main/HostImpl.cpp
r14938 r14942 737 737 static int vboxSolarisAddPhysHostIface(di_node_t Node, di_minor_t Minor, void *pvHostNetworkInterfaceList) 738 738 { 739 740 741 742 743 744 745 746 747 748 749 739 /* 740 * Skip aggregations. 741 */ 742 if (!strcmp(di_driver_name(Node), "aggr")) 743 return DI_WALK_CONTINUE; 744 745 /* 746 * Skip softmacs. 747 */ 748 if (!strcmp(di_driver_name(Node), "softmac")) 749 return DI_WALK_CONTINUE; 750 750 751 751 vboxSolarisAddHostIface(di_driver_name(Node), di_instance(Node), NULL, pvHostNetworkInterfaceList); 752 752 return DI_WALK_CONTINUE; 753 753 } 754 754 # endif /* VBOX_SOLARIS_NSL_RESOLVED */ … … 844 844 { 845 845 di_walk_minor(Root, DDI_NT_NET, 0, &list, vboxSolarisAddPhysHostIface); 846 846 di_fini(Root); 847 847 } 848 848
Note:
See TracChangeset
for help on using the changeset viewer.