aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2009-12-02 14:07:26 +0000
committerBruce Momjian <bruce@momjian.us>2009-12-02 14:07:26 +0000
commit8c1c2e38f6806379c46b4f8a85d9a7e0c6f9fc04 (patch)
treed0b5d5c623bf63d6a5172bb69e587662dac88a11 /src
parentaebc4e67fffc89a0cf933b9617316b7019318db4 (diff)
downloadpostgresql-8c1c2e38f6806379c46b4f8a85d9a7e0c6f9fc04.tar.gz
postgresql-8c1c2e38f6806379c46b4f8a85d9a7e0c6f9fc04.zip
thread-safety
Apply full patch to enable thread-safety by default, e.g. doc changes.
Diffstat (limited to 'src')
-rw-r--r--src/test/thread/README15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/test/thread/README b/src/test/thread/README
index 98f1f54f096..9f85ae73982 100644
--- a/src/test/thread/README
+++ b/src/test/thread/README
@@ -1,17 +1,18 @@
-$PostgreSQL: pgsql/src/test/thread/README,v 1.2 2008/03/21 13:23:29 momjian Exp $
+$PostgreSQL: pgsql/src/test/thread/README,v 1.3 2009/12/02 14:07:26 momjian Exp $
Threading
=========
-This program should be run by developers wishing to enable threading on
-new platforms.
+This program is run by configure to determine if threading is
+properly supported on the platform.
-Run thread_test program to determine if your native libc functions are
-thread-safe, or if we should use *_r functions or thread locking.
+You can run the program manually to see details, which shows if your
+native libc functions are thread-safe, or if we use *_r functions or
+thread locking.
-To use this program, you must:
+To use this program manually, you must:
- o run "configure --enable-thread-safety"
+ o run "configure"
o compile the main source tree
o compile and run this program