- Timestamp:
- 08/23/09 21:07:45 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/branches/ttsou/gnuradio/trunk/usrp/host/lib/fusb_sysconfig_libusb1.cc
r9504 r9523 28 28 static const int FUSB_BUFFER_SIZE = 2 * (1L << 20); // 2 MB 29 29 30 struct libusb_context; 31 30 32 fusb_devhandle * 31 fusb_sysconfig::make_devhandle (libusb_device_handle *udh )33 fusb_sysconfig::make_devhandle (libusb_device_handle *udh, libusb_context *ctx) 32 34 { 33 return new fusb_devhandle_libusb1 (udh );35 return new fusb_devhandle_libusb1 (udh, ctx); 34 36 } 35 37