Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2f52236

Browse files
committed
More thread error message improvments.
1 parent 022a1e0 commit 2f52236

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tools/thread/thread_test.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.23 2004/04/23 23:58:12 momjian Exp $
9+
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.24 2004/04/26 00:36:18 momjian Exp $
1010
*
1111
* This program tests to see if your standard libc functions use
1212
* pthread_setspecific()/pthread_getspecific() to be thread-safe.
@@ -139,7 +139,7 @@ main(int argc, char *argv[])
139139
printf("thread-safe.\n");
140140
else
141141
{
142-
printf("not thread-safe.\n");
142+
printf("not thread-safe. **\n");
143143
platform_is_threadsafe = false;
144144
}
145145
#endif
@@ -152,7 +152,7 @@ main(int argc, char *argv[])
152152
printf("thread-safe.\n");
153153
else
154154
{
155-
printf("not thread-safe.\n");
155+
printf("not thread-safe. **\n");
156156
platform_is_threadsafe = false;
157157
}
158158
#endif
@@ -169,7 +169,7 @@ main(int argc, char *argv[])
169169
printf("thread-safe.\n");
170170
else
171171
{
172-
printf("not thread-safe.\n");
172+
printf("not thread-safe. **\n");
173173
platform_is_threadsafe = false;
174174
}
175175
#endif

0 commit comments

Comments
 (0)