X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=session.c;h=ac5981ad050b6993478ca04f0838345c704e2eb8;hb=034accb512e43172ee292d1585870db9e2477ed0;hp=8f7c93544d46930b9740793877edb826d7a1686d;hpb=961009b0c4002717c669a0cdcafb0fcf29f5ea1b;p=libsigrok.git diff --git a/session.c b/session.c index 8f7c9354..ac5981ad 100644 --- 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. *