diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2011-11-23 08:56:44 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2011-11-23 08:56:44 +0100 |
commit | c75080f0d84de5f2aa73472ad4d6cf32aaeba88e (patch) | |
tree | 0dfaed8ad74c9b3c0b2ee817f0ecbdd0fbf17b70 | |
parent | f97f531c2d31b729afbf1c97a0d017526bf8e52a (diff) | |
download | libsigrokdecode-c75080f0d84de5f2aa73472ad4d6cf32aaeba88e.tar.gz libsigrokdecode-c75080f0d84de5f2aa73472ad4d6cf32aaeba88e.zip |
srd: Doxygen comments for srd_init() and srd_exit().
-rw-r--r-- | decode.c | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -77,7 +77,24 @@ static PyMethodDef EmbMethods[] = { /** * Initialize libsigrokdecode. * + * This initializes the Python interpreter, and creates and initializes + * a "sigrok" Python module with a single put() method. + * + * Then, it searches for sigrok protocol decoder files (*.py) in the + * "decoders" subdirectory of the the sigrok installation directory. + * All decoders that are found are loaded into memory and added to an + * internal list of decoders, which can be queried via srd_list_decoders(). + * + * The caller is responsible for calling the clean-up function srd_exit(), + * which will properly shut down libsigrokdecode and free its allocated memory. + * + * Multiple calls to srd_init(), without calling srd_exit() inbetween, + * are not allowed. + * * @return SRD_OK upon success, a (negative) error code otherwise. + * Upon Python errors, return SRD_ERR_PYTHON. If the sigrok decoders + * directory cannot be accessed, return SRD_ERR_DECODERS_DIR. + * If not enough memory could be allocated, return SRD_ERR_MALLOC. */ int srd_init(void) { @@ -450,6 +467,13 @@ static int srd_unload_all_decoders(void) /** * Shutdown libsigrokdecode. * + * This frees all the memory allocated for protocol decoders and shuts down + * the Python interpreter. + * + * This function should only be called if there was a (successful!) invocation + * of srd_init() before. Calling this function multiple times in a row, without + * any successful srd_init() calls inbetween, is not allowed. + * * @return SRD_OK upon success, a (negative) error code otherwise. */ int srd_exit(void) |