From: Mattias ?g. <mat...@us...> - 2001-02-27 17:14:23
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.33 1.34=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * added bt_disconnect_cfm * added generic waitqueue timer used to wake up 'failed' blocking function calls The diff of the modified file(s): --- bluetooth.h 2001/02/15 16:28:46 1.33 +++ bluetooth.h 2001/02/27 17:15:32 1.34 @@ -75,6 +75,7 @@ =20 void bt_connect_ind(u32 con_id); void bt_disconnect_ind(u32 con_id); +void bt_disconnect_cfm(u32 con_id, s32 status); =20 /******************/ /* Misc functions */ @@ -83,6 +84,13 @@ s32 bt_initiated(void); void bt_connect_cfm(u32 con_id, s32 status); s32 bt_sprint_status(u8 *buf); + +/* Handles wakeup of failed blocking function calls */ + +void start_wq_timer(struct timer_list *wq_timer, + u32 timeout, struct wait_queue **wq); +static void release_wq_timer(struct timer_list *wq_timer); +static void wq_timeout(unsigned long ptr); =20 #endif /****************** END OF FILE bluetooth.h ******************************= ***/ |