aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-01-23 18:49:38 +0100
committerChristian Grothoff <christian@grothoff.org>2024-01-23 18:49:38 +0100
commit852532d1d9241e553b3aa4eb54dd1a28de3c8609 (patch)
tree31fb7f9ea96f28195d6de9773888f7e30d8bef58 /src
parent9da0f30b16f4b273a4a38f28372596e69fd8088c (diff)
downloadexchange-852532d1d9241e553b3aa4eb54dd1a28de3c8609.tar.xz
note on limitations
Diffstat (limited to 'src')
-rw-r--r--src/include/taler_auditor_service.h2
-rw-r--r--src/include/taler_exchange_service.h2
-rw-r--r--src/include/taler_testing_lib.h2
-rw-r--r--src/include/taler_util.h2
4 files changed, 8 insertions, 0 deletions
diff --git a/src/include/taler_auditor_service.h b/src/include/taler_auditor_service.h
index 75c3d0e25..0d4a9288f 100644
--- 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
index bee3e0211..465c54ae5 100644
--- 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
index 43923fea7..f07d9be20 100644
--- 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
index e895c3445..fc2316705 100644
--- 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
*/