Changeset 9515

Show
Ignore:
Timestamp:
08/16/09 18:23:34 (4 years ago)
Author:
ttsou
Message:

quick fix - not a solution - for shutdown bug

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/branches/ttsou/gnuradio/usrp/host/lib/usrp_basic.cc

    r9508 r9515  
    176176    libusb_close (d_udh); 
    177177 
    178   // shutdown libusb 
    179   libusb_exit (NULL); 
     178  // There's no reference count on the number of times libusb is initialized. 
     179  // libusb_init can be called multiple times, but libusb_exit shuts down 
     180  // everything. Leave libusb running for now. Need to add a count so that it 
     181  // exits nicely.  
     182 
     183  //libusb_exit (NULL); 
    180184} 
    181185