commit 852532d1d9241e553b3aa4eb54dd1a28de3c8609
parent 9da0f30b16f4b273a4a38f28372596e69fd8088c
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 23 Jan 2024 18:49:38 +0100
note on limitations
Diffstat:
4 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/include/taler_auditor_service.h b/src/include/taler_auditor_service.h
@@ -16,6 +16,8 @@
/**
* @file include/taler_auditor_service.h
* @brief C interface of libtalerauditor, a C library to use auditor's HTTP API
+ * This library is not thread-safe, all APIs must only be used from a single thread.
+ * This library calls abort() if it runs out of memory. Be aware of these limitations.
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
* @author Christian Grothoff
*/
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
@@ -16,6 +16,8 @@
/**
* @file include/taler_exchange_service.h
* @brief C interface of libtalerexchange, a C library to use exchange's HTTP API
+ * This library is not thread-safe, all APIs must only be used from a single thread.
+ * This library calls abort() if it runs out of memory. Be aware of these limitations.
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
* @author Christian Grothoff
* @author Özgür Kesim
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h
@@ -20,6 +20,8 @@
/**
* @file include/taler_testing_lib.h
* @brief API for writing an interpreter to test Taler components
+ * This library is not thread-safe, all APIs must only be used from a single thread.
+ * This library calls abort() if it runs out of memory. Be aware of these limitations.
* @author Christian Grothoff <christian@grothoff.org>
* @author Marcello Stanisci
*/
diff --git a/src/include/taler_util.h b/src/include/taler_util.h
@@ -16,6 +16,8 @@
/**
* @file include/taler_util.h
* @brief Interface for common utility functions
+ * This library is not thread-safe, all APIs must only be used from a single thread.
+ * This library calls abort() if it runs out of memory. Be aware of these limitations.
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
* @author Christian Grothoff
*/