summaryrefslogtreecommitdiff
path: root/libsigrokdecode.h
diff options
context:
space:
mode:
authorSoeren Apel <soeren@apelpie.net>2018-07-09 22:20:24 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2018-08-30 11:56:38 +0200
commitd4d8ac2a005a091f23bf89cff2ff6fbfc8fcd739 (patch)
tree28b6aeaeaf5c5f3f588c70cb8a8c36d26048e9df /libsigrokdecode.h
parent66cff5a67110b3e9a4884ac3d8f7742d6f755e30 (diff)
downloadlibsigrokdecode-d4d8ac2a005a091f23bf89cff2ff6fbfc8fcd739.tar.gz
libsigrokdecode-d4d8ac2a005a091f23bf89cff2ff6fbfc8fcd739.zip
Make srd_inst_decode() return the actual decoder state, not SRD_OK
Diffstat (limited to 'libsigrokdecode.h')
-rw-r--r--libsigrokdecode.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libsigrokdecode.h b/libsigrokdecode.h
index a26bce9..deba470 100644
--- a/libsigrokdecode.h
+++ b/libsigrokdecode.h
@@ -277,6 +277,9 @@ struct srd_decoder_inst {
/** Requests termination of wait() and decode(). */
gboolean want_wait_terminate;
+ /** Indicates the current state of the decoder stack. */
+ int decoder_state;
+
GCond got_new_samples_cond;
GCond handled_all_samples_cond;
GMutex data_mutex;