-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Block] Add proper close to RtlSdrSource #8
Comments
vsergeev
changed the title
Add proper close to RtlSdrSource
[Block] Add proper close to RtlSdrSource
Jul 1, 2016
vsergeev
added a commit
that referenced
this issue
Jul 5, 2016
and allow device close after rtlsdr_read_async() returns. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 5, 2016
and allow device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 5, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 6, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 6, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 6, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 8, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 8, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 10, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 10, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 10, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 10, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
vsergeev
added a commit
that referenced
this issue
Jul 17, 2016
the sigterm handlers cancel's the async read, allowing device close after rtlsdr_read_async() returns. also rename read_async_callback to read_callback for less ambiguity between it and the async.callback() helper function. resolves #8.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
RtlSdrSource
block is forcibly killed bySIGTERM
on flow graph termination, and does not have a chance to callrtlsdr_close()
on its device handle. It should install a signal handler onSIGTERM
that gives it a chance to properly close the device before exiting.The text was updated successfully, but these errors were encountered: