diff options
author | Gerhard Sittig <gerhard.sittig@gmx.net> | 2018-04-23 20:42:54 +0200 |
---|---|---|
committer | Gerhard Sittig <gerhard.sittig@gmx.net> | 2018-04-23 23:25:42 +0200 |
commit | 3f3c4614b551855d7cf56e83ec7fb883592050ab (patch) | |
tree | cbb437be87f0b530e6e36802e09af913ef26ae6a /libsigrokdecode.h | |
parent | f8d25d1f7256a4515b7fb972e3302be2138c8ee1 (diff) | |
download | libsigrokdecode-3f3c4614b551855d7cf56e83ec7fb883592050ab.tar.gz libsigrokdecode-3f3c4614b551855d7cf56e83ec7fb883592050ab.zip |
instance: return SRD_ERR_TERM_REQ when execution shall terminate
The previous implementation internally noticed the "want terminate"
request, and skipped decoder execution to faster get to the end of the
input stream. But an OK return code was provided in that code path, and
more input data was sent by applications (sometimes for many seconds or
few minutes).
Do return a new SRD_ERR_TERM_REQ error code, such that applications can
tell failed execution from requested termination.
Diffstat (limited to 'libsigrokdecode.h')
-rw-r--r-- | libsigrokdecode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsigrokdecode.h b/libsigrokdecode.h index ee610c9..a26bce9 100644 --- a/libsigrokdecode.h +++ b/libsigrokdecode.h @@ -71,6 +71,7 @@ enum srd_error_code { SRD_ERR_BUG = -4, /**< Errors hinting at internal bugs */ SRD_ERR_PYTHON = -5, /**< Python C API error */ SRD_ERR_DECODERS_DIR = -6, /**< Protocol decoder path invalid */ + SRD_ERR_TERM_REQ = -7, /**< Termination requested */ /* * Note: When adding entries here, don't forget to also update the |