From 2cb7e0aaedad73b076ea18c6900b0e86c5760d79 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 15:00:47 +0200 Subject: Adding upstream version 247.3. Signed-off-by: Daniel Baumann --- man/threads-aware.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 man/threads-aware.xml (limited to 'man/threads-aware.xml') diff --git a/man/threads-aware.xml b/man/threads-aware.xml new file mode 100644 index 0000000..fb38d07 --- /dev/null +++ b/man/threads-aware.xml @@ -0,0 +1,15 @@ + + + + + + +All functions listed here are thread-agnostic and only a single specific thread may operate on a +given object during its entire lifetime. It's safe to allocate multiple independent objects and use each from a +specific thread in parallel. However, it's not safe to allocate such an object in one thread, and operate or free it +from any other, even if locking is used to ensure these threads don't operate on it at the very same time. + +All functions listed here are thread-safe and may be called in parallel from multiple threads. + + -- cgit v1.2.3