Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Raptor Engineering Public Development
dsview
Commits
eb11b488
Commit
eb11b488
authored
8 years ago
by
vatrat
Browse files
Options
Download
Email Patches
Plain Diff
Add (temporary?) libusb freeze fix from DSView issue #87
parent
acc14cf0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
libsigrok4DSL/hardware/DSL/dslogic.c
libsigrok4DSL/hardware/DSL/dslogic.c
+6
-6
No files found.
libsigrok4DSL/hardware/DSL/dslogic.c
View file @
eb11b488
...
...
@@ -2380,11 +2380,11 @@ static int receive_data(int fd, int revents, const struct sr_dev_inst *sdi)
usb
=
sdi
->
conn
;
tv
.
tv_sec
=
tv
.
tv_usec
=
0
;
libusb_handle_events_timeout_completed
(
drvc
->
sr_ctx
->
libusb_ctx
,
&
tv
,
&
completed
);
/* broken
libusb_handle_events_timeout_completed(drvc->sr_ctx->libusb_ctx, &tv, &completed);
*/
if
(
devc
->
status
==
DSL_FINISH
)
{
if
(
libusb_try_lock_events
(
drvc
->
sr_ctx
->
libusb_ctx
)
==
0
)
{
if
(
libusb_event_handling_ok
(
drvc
->
sr_ctx
->
libusb_ctx
))
{
/* broken
if (libusb_try_lock_events(drvc->sr_ctx->libusb_ctx) == 0) {
*/
/* broken
if (libusb_event_handling_ok(drvc->sr_ctx->libusb_ctx)) {
*/
/* Stop GPIF acquisition */
usb
=
((
struct
sr_dev_inst
*
)
devc
->
cb_data
)
->
conn
;
if
((
ret
=
command_stop_acquisition
(
usb
->
devhdl
))
!=
SR_OK
)
...
...
@@ -2393,9 +2393,9 @@ static int receive_data(int fd, int revents, const struct sr_dev_inst *sdi)
sr_info
(
"%s: Sent acquisition stop command!"
,
__func__
);
remove_sources
(
devc
);
}
libusb_unlock_events
(
drvc
->
sr_ctx
->
libusb_ctx
);
}
/* } */
/* broken
libusb_unlock_events(drvc->sr_ctx->libusb_ctx);
*/
/* } */
}
return
TRUE
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment