1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

thread-safety

Apply full patch to enable thread-safety by default, e.g. doc changes.
This commit is contained in:
Bruce Momjian
2009-12-02 14:07:26 +00:00
parent aebc4e67ff
commit 8c1c2e38f6
6 changed files with 48 additions and 137 deletions

View File

@ -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