Changeset 64324 in vbox
- Timestamp:
- Oct 19, 2016 4:50:12 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 111400
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Devices/USB/linux/USBProxyDevice-linux.cpp ¶
r64294 r64324 111 111 typedef struct USBPROXYURBLNX 112 112 { 113 /** The kernel URB data */ 113 /** The kernel URB data. */ 114 #if RT_GNUC_PREREQ(4, 6) 115 /* gcc 6.2 complains about the [] member of KUrb */ 116 # pragma GCC diagnostic push 117 # pragma GCC diagnostic ignored "-Wpedantic" 118 #endif 114 119 struct usbdevfs_urb KUrb; 120 #if RT_GNUC_PREREQ(4, 6) 121 # pragma GCC diagnostic pop 122 #endif 115 123 /** Space filler for the isochronous packets. */ 116 124 struct usbdevfs_iso_packet_desc aIsocPktsDonUseTheseUseTheOnesInKUrb[8]; … … 122 130 struct USBPROXYURBLNX *pSplitNext; 123 131 /** Don't report these back. */ 124 bool 132 bool fCanceledBySubmit; 125 133 /** This split element is reaped. */ 126 bool 134 bool fSplitElementReaped; 127 135 /** Size to transfer in remaining fragments of a split URB */ 128 uint32_t 136 uint32_t cbSplitRemaining; 129 137 } USBPROXYURBLNX, *PUSBPROXYURBLNX; 130 138 -
TabularUnified trunk/src/VBox/Main/src-server/linux/HostDnsServiceLinux.cpp ¶
r62485 r64324 35 35 #include <linux/limits.h> 36 36 37 /* Workaround for <sys/cdef.h> defining __flexarr to [] which beats us in 38 * struct inotify_event (char name __flexarr). */ 39 #include <sys/cdefs.h> 40 #undef __flexarr 41 #define __flexarr [0] 37 42 #include <sys/inotify.h> 38 43 #include <sys/types.h>
Note:
See TracChangeset
for help on using the changeset viewer.