]> sigrok.org Git - libsigrok.git/blobdiff - session.c
Add Rigol DS1052E/1102E VID:PID
[libsigrok.git] / session.c
index 8f7c93544d46930b9740793877edb826d7a1686d..ac5981ad050b6993478ca04f0838345c704e2eb8 100644 (file)
--- a/session.c
+++ b/session.c
@@ -314,7 +314,7 @@ SR_API int sr_session_start(void)
                return SR_ERR_BUG;
        }
 
-       sr_info("session: starting");
+       sr_info("Starting.");
 
        ret = SR_OK;
        for (l = session->devs; l; l = l->next) {
@@ -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.
  *