Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
31f48c9a
Commit
31f48c9a
authored
21 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update thread test to only test for 'localhost' and local machine name.
parent
d56b736d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/thread/thread_test.c
+15
-5
15 additions, 5 deletions
src/tools/thread/thread_test.c
with
15 additions
and
5 deletions
src/tools/thread/thread_test.c
+
15
−
5
View file @
31f48c9a
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.1
0
2004/04/0
4 17
:2
3
:5
4
momjian Exp $
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.1
1
2004/04/0
5 01
:2
7
:5
8
momjian Exp $
*
*
* This program tests to see if your standard libc functions use
* This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe.
* pthread_setspecific()/pthread_getspecific() to be thread-safe.
...
@@ -35,6 +35,8 @@
...
@@ -35,6 +35,8 @@
void
func_call_1
(
void
);
void
func_call_1
(
void
);
void
func_call_2
(
void
);
void
func_call_2
(
void
);
char
myhostname
[
MAXHOSTNAMELEN
];
int
errno1_set
=
0
;
int
errno1_set
=
0
;
int
errno2_set
=
0
;
int
errno2_set
=
0
;
...
@@ -61,6 +63,12 @@ int main(int argc, char *argv[])
...
@@ -61,6 +63,12 @@ int main(int argc, char *argv[])
return
1
;
return
1
;
}
}
if
(
gethostname
(
myhostname
,
MAXHOSTNAMELEN
)
!=
0
)
{
fprintf
(
stderr
,
"can not get local hostname, exiting
\n
"
);
exit
(
1
);
}
printf
(
"\
printf
(
"\
Make sure you have added any needed 'THREAD_CPPFLAGS' and 'THREAD_LIBS'
\n
\
Make sure you have added any needed 'THREAD_CPPFLAGS' and 'THREAD_LIBS'
\n
\
defines to your template/$port file before compiling this program.
\n\n
"
defines to your template/$port file before compiling this program.
\n\n
"
...
@@ -128,8 +136,9 @@ void func_call_1(void) {
...
@@ -128,8 +136,9 @@ void func_call_1(void) {
passwd_p1
=
NULL
;
/* force thread-safe failure report */
passwd_p1
=
NULL
;
/* force thread-safe failure report */
}
}
hostent_p1
=
gethostbyname
(
"www.yahoo.com"
);
/* threads do this in opposite order */
p
=
gethostbyname
(
"www.weather.com"
);
hostent_p1
=
gethostbyname
(
myhostname
);
p
=
gethostbyname
(
"localhost"
);
if
(
hostent_p1
!=
p
)
if
(
hostent_p1
!=
p
)
{
{
printf
(
"Your gethostbyname() changes the static memory area between calls
\n
"
);
printf
(
"Your gethostbyname() changes the static memory area between calls
\n
"
);
...
@@ -174,8 +183,9 @@ void func_call_2(void) {
...
@@ -174,8 +183,9 @@ void func_call_2(void) {
passwd_p2
=
NULL
;
/* force thread-safe failure report */
passwd_p2
=
NULL
;
/* force thread-safe failure report */
}
}
hostent_p2
=
gethostbyname
(
"www.google.com"
);
/* threads do this in opposite order */
p
=
gethostbyname
(
"www.postgresql.org"
);
hostent_p2
=
gethostbyname
(
"localhost"
);
p
=
gethostbyname
(
myhostname
);
if
(
hostent_p2
!=
p
)
if
(
hostent_p2
!=
p
)
{
{
printf
(
"Your gethostbyname() changes the static memory area between calls
\n
"
);
printf
(
"Your gethostbyname() changes the static memory area between calls
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment