summaryrefslogtreecommitdiff
path: root/src/libical/icalmemory.h
diff options
context:
space:
mode:
authorMarkus Minichmayr <markus@tapkey.com>2022-10-10 19:01:06 +0200
committerMarkus Minichmayr <markus@tapkey.com>2022-11-21 23:04:29 +0100
commit5f36bf12f93f480f1f957b884c8f7f69da64648c (patch)
tree761bfde85219d24452fc2151a652a87bea5b68e0 /src/libical/icalmemory.h
parente3b0f174abbf03962c6cb42db44ec23452b1784c (diff)
downloadlibical-git-concurrency_mode_threadlocal.tar.gz
CMAKE option LIBICAL_SYNC_MODE_THREADLOCAL: Allow compiling all global variables with thread-local storage, thus avoiding the need for synchronization.concurrency_mode_threadlocal
Diffstat (limited to 'src/libical/icalmemory.h')
-rw-r--r--src/libical/icalmemory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libical/icalmemory.h b/src/libical/icalmemory.h
index 39541d2d..adb580da 100644
--- a/src/libical/icalmemory.h
+++ b/src/libical/icalmemory.h
@@ -120,8 +120,8 @@ LIBICAL_ICAL_EXPORT void icalmemory_add_tmp_buffer(void *buf);
/**
* @brief Frees all memory used in the ring
*
- * Frees all memory used in the ring. Depending on if HAVE_PTHREAD is set or
- * not, the ring buffer is allocated on a per-thread basis, meaning that if all
+ * Frees all memory used in the ring. If PTHREAD is used or thread-local mode is configured,
+ * the ring buffer is allocated on a per-thread basis, meaning that if all
* rings are to be released, it must be called once in every thread.
*
* @par Usage