summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsudden6 <sudden6@gmx.at>2019-11-14 13:11:13 +0100
committersudden6 <sudden6@gmx.at>2020-01-02 11:58:52 +0100
commit683bc802e28934045d210ecb14609bde32de5d82 (patch)
tree86e3c24f4d91f0a760b5a89803b35689a6e68d65
parent1b7d7b66c5221133abc5137e2cb3fa349491ae72 (diff)
fix ToxAV threading documentation
ToxAV is not thread-safe at the moment, remove that claim from the header file.
-rw-r--r--toxav/toxav.api.h4
-rw-r--r--toxav/toxav.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/toxav/toxav.api.h b/toxav/toxav.api.h
index 46e4b226..5d8a8b26 100644
--- a/toxav/toxav.api.h
+++ b/toxav/toxav.api.h
@@ -53,8 +53,8 @@ extern "C" {
53 53
54/** \subsection threading Threading implications 54/** \subsection threading Threading implications
55 * 55 *
56 * Unlike the Core API, this API is fully thread-safe. The library will ensure 56 * Only ${toxAV.iterate} is thread-safe, all other functions must run from the
57 * the proper synchronization of parallel calls. 57 * tox thread.
58 * 58 *
59 * A common way to run ToxAV (multiple or single instance) is to have a thread, 59 * A common way to run ToxAV (multiple or single instance) is to have a thread,
60 * separate from tox instance thread, running a simple ${toxAV.iterate} loop, 60 * separate from tox instance thread, running a simple ${toxAV.iterate} loop,
diff --git a/toxav/toxav.h b/toxav/toxav.h
index bfb7617c..daa1314d 100644
--- a/toxav/toxav.h
+++ b/toxav/toxav.h
@@ -49,8 +49,8 @@ extern "C" {
49 */ 49 */
50/** \subsection threading Threading implications 50/** \subsection threading Threading implications
51 * 51 *
52 * Unlike the Core API, this API is fully thread-safe. The library will ensure 52 * Only toxav_iterate is thread-safe, all other functions must run from the
53 * the proper synchronization of parallel calls. 53 * tox thread.
54 * 54 *
55 * A common way to run ToxAV (multiple or single instance) is to have a thread, 55 * A common way to run ToxAV (multiple or single instance) is to have a thread,
56 * separate from tox instance thread, running a simple toxav_iterate loop, 56 * separate from tox instance thread, running a simple toxav_iterate loop,