diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-09-03 19:30:31 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-09-03 19:30:31 +0000 |
commit | 4cc247f74b842663a657a9776aaad9c54ccfa262 (patch) | |
tree | 6e0e2acc407f72b6dab9000fbb769bba200253e7 /src/port/thread.c | |
parent | c351729e1e1be4a818f0b5857e672d11e8a67450 (diff) | |
download | postgresql-4cc247f74b842663a657a9776aaad9c54ccfa262.tar.gz postgresql-4cc247f74b842663a657a9776aaad9c54ccfa262.zip |
Add test for thread-safeness of libc functions.
Diffstat (limited to 'src/port/thread.c')
-rw-r--r-- | src/port/thread.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/port/thread.c b/src/port/thread.c index 80af433e4ac..8446f01f8aa 100644 --- a/src/port/thread.c +++ b/src/port/thread.c @@ -7,7 +7,7 @@ * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * - * $Id: thread.c,v 1.4 2003/08/16 15:35:51 momjian Exp $ + * $Id: thread.c,v 1.5 2003/09/03 19:30:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -39,6 +39,8 @@ * The current setup is to assume either all standard functions are * thread-safe (NEED_REENTRANT_FUNC_NAMES=no), or the operating system * requires reentrant function names (NEED_REENTRANT_FUNC_NAMES=yes). + * Compile and run src/tools/test_thread_funcs.c to see if your operating + * system requires reentrant function names. */ |