diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-04-26 00:36:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-04-26 00:36:18 +0000 |
commit | 2f5223600a483ae6771ca2fa231dc34264c4df18 (patch) | |
tree | 5cb5fecb79db452d5fe2f3f7844d619d4373aacb /src | |
parent | 022a1e0cf104ec472adbb116141e639b0ef2198b (diff) |
More thread error message improvments.
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/thread/thread_test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/thread/thread_test.c b/src/tools/thread/thread_test.c index 3f59419b7aa..d173f01d4fe 100644 --- a/src/tools/thread/thread_test.c +++ b/src/tools/thread/thread_test.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.23 2004/04/23 23:58:12 momjian Exp $ + * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.24 2004/04/26 00:36:18 momjian Exp $ * * This program tests to see if your standard libc functions use * pthread_setspecific()/pthread_getspecific() to be thread-safe. @@ -139,7 +139,7 @@ main(int argc, char *argv[]) printf("thread-safe.\n"); else { - printf("not thread-safe.\n"); + printf("not thread-safe. **\n"); platform_is_threadsafe = false; } #endif @@ -152,7 +152,7 @@ main(int argc, char *argv[]) printf("thread-safe.\n"); else { - printf("not thread-safe.\n"); + printf("not thread-safe. **\n"); platform_is_threadsafe = false; } #endif @@ -169,7 +169,7 @@ main(int argc, char *argv[]) printf("thread-safe.\n"); else { - printf("not thread-safe.\n"); + printf("not thread-safe. **\n"); platform_is_threadsafe = false; } #endif |