Deleted Added
full compact
1c1
< /* $FreeBSD: head/sys/dev/usb/usb_util.h 190749 2009-04-05 21:24:15Z piso $ */
---
> /* $FreeBSD: head/sys/dev/usb/usb_util.h 194227 2009-06-15 00:33:18Z thompsa $ */
37,55d36
< #if (USB_HAVE_CONDVAR == 0)
< void usb2_cv_init(struct cv *cv, const char *desc);
< void usb2_cv_destroy(struct cv *cv);
< void usb2_cv_wait(struct cv *cv, struct mtx *mtx);
< int usb2_cv_wait_sig(struct cv *cv, struct mtx *mtx);
< int usb2_cv_timedwait(struct cv *cv, struct mtx *mtx, int timo);
< void usb2_cv_signal(struct cv *cv);
< void usb2_cv_broadcast(struct cv *cv);
<
< #else
< #define usb2_cv_init cv_init
< #define usb2_cv_destroy cv_destroy
< #define usb2_cv_wait cv_wait
< #define usb2_cv_wait_sig cv_wait_sig
< #define usb2_cv_timedwait cv_timedwait
< #define usb2_cv_signal cv_signal
< #define usb2_cv_broadcast cv_broadcast
< #endif
<