]> sigrok.org Git - libsigrok.git/commit
sr: session: Deprecate sr_session_halt()
authorLars-Peter Clausen <redacted>
Thu, 5 Jul 2012 19:15:09 +0000 (21:15 +0200)
committerBert Vermeulen <redacted>
Wed, 11 Jul 2012 21:28:35 +0000 (23:28 +0200)
commit9ffbde0e84ef6c711be4edbe3076e8c805efad63
treee4e6dc6a136b7b40aec9af3eb56bec84d4355816
parent9213ad012accac3dbfbc6b72d6e99228e87740a4
sr: session: Deprecate sr_session_halt()

sr_session_halt() in its current state is kind of useless and even dangerous.
All it will do is mark the session as not running, but wont signal the devices
to stop to capture data. This is not so much of a problem with the blocking
sr_session_run(), but once there is support for asynchronous data acquisition by
attaching the session sources to the applications mainloop sr_session_halt()
basically becomes a no-op. sr_session_stop() already does what needs to be done,
marking the session as not running and signal the devices to stop acquisition,
so make sr_session_halt() an alias for sr_session_stop() and deprecate its
usage.

Signed-off-by: Lars-Peter Clausen <redacted>
session.c