mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 04:57:30 +08:00
Allow additional thread flags to be added via port templates. Change thread flag names to PTHREAD_CFLAGS and PTHREAD_LIBS to match new configure script.
17 lines
536 B
Plaintext
17 lines
536 B
Plaintext
This program should be run by developers wishing to enable threading on
|
|
new platforms.
|
|
|
|
Run thread_test program to determine if your native libc functions are
|
|
thread-safe, or if we should use *_r functions or thread locking.
|
|
|
|
To use this program, you must:
|
|
|
|
o run "configure --enable-thread-safety"
|
|
o compile the main source tree
|
|
o compile and run this program
|
|
|
|
If your platform requires special thread flags that are not tested by
|
|
/config/acx_pthread.m4, add PTHREAD_CFLAGS and PTHREAD_LIBS defines to
|
|
your template/${port} file.
|
|
|