]> sigrok.org Git - libsigrok.git/commitdiff
Drop deprecated sr_session_halt().
authorUwe Hermann <redacted>
Sun, 3 Mar 2013 17:02:24 +0000 (18:02 +0100)
committerUwe Hermann <redacted>
Sun, 3 Mar 2013 17:02:24 +0000 (18:02 +0100)
This has been deprecated in favor of sr_session_stop() since a while.

None of the current frontends use sr_session_halt() anymore, neither
does libsigrok.

proto.h
session.c

diff --git a/proto.h b/proto.h
index c801f6cd19b09308081827acd43f933658d4749e..54cccb1712c2e6d490c6f441d41bad4ae0bc03a0 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -96,7 +96,6 @@ SR_API int sr_session_datafeed_callback_add(sr_datafeed_callback_t cb);
 /* Session control */
 SR_API int sr_session_start(void);
 SR_API int sr_session_run(void);
-SR_API int sr_session_halt(void);
 SR_API int sr_session_stop(void);
 SR_API int sr_session_save(const char *filename, const struct sr_dev_inst *sdi,
                unsigned char *buf, int unitsize, int units);
index c372cb6b968c874fc9026762c8720cdf1a118c89..ac5981ad050b6993478ca04f0838345c704e2eb8 100644 (file)
--- a/session.c
+++ b/session.c
@@ -366,20 +366,6 @@ SR_API int sr_session_run(void)
        return SR_OK;
 }
 
-/**
- * Halt the current session.
- *
- * This function is deprecated and should not be used in new code, use
- * sr_session_stop() instead. The behaviour of this function is identical to
- * sr_session_stop().
- *
- * @return SR_OK upon success, SR_ERR_BUG if no session exists.
- */
-SR_API int sr_session_halt(void)
-{
-       return sr_session_stop();
-}
-
 /**
  * Stop the current session.
  *