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
c5159bc0
Commit
c5159bc0
authored
20 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Mark file-global function and variables as static.
parent
db48396a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/thread/thread_test.c
+23
-23
23 additions, 23 deletions
src/tools/thread/thread_test.c
with
23 additions
and
23 deletions
src/tools/thread/thread_test.c
+
23
−
23
View file @
c5159bc0
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.3
6
200
4/12/31 22:04:02 pgsql
Exp $
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.3
7
200
5/03/11 15:25:31 momjian
Exp $
*
* This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe.
...
...
@@ -66,43 +66,43 @@ main(int argc, char *argv[])
/* This must be down here because this is the code that uses threads. */
#include
<pthread.h>
void
func_call_1
(
void
);
void
func_call_2
(
void
);
static
void
func_call_1
(
void
);
static
void
func_call_2
(
void
);
#define TEMP_FILENAME_1 "/tmp/thread_test.1.XXXXXX"
#define TEMP_FILENAME_2 "/tmp/thread_test.2.XXXXXX"
char
*
temp_filename_1
;
char
*
temp_filename_2
;
static
char
*
temp_filename_1
;
static
char
*
temp_filename_2
;
pthread_mutex_t
init_mutex
=
PTHREAD_MUTEX_INITIALIZER
;
static
pthread_mutex_t
init_mutex
=
PTHREAD_MUTEX_INITIALIZER
;
volatile
int
thread1_done
=
0
;
volatile
int
thread2_done
=
0
;
static
volatile
int
thread1_done
=
0
;
static
volatile
int
thread2_done
=
0
;
volatile
int
errno1_set
=
0
;
volatile
int
errno2_set
=
0
;
static
volatile
int
errno1_set
=
0
;
static
volatile
int
errno2_set
=
0
;
#ifndef HAVE_STRERROR_R
char
*
strerror_p1
;
char
*
strerror_p2
;
bool
strerror_threadsafe
=
false
;
static
char
*
strerror_p1
;
static
char
*
strerror_p2
;
static
bool
strerror_threadsafe
=
false
;
#endif
#ifndef HAVE_GETPWUID_R
struct
passwd
*
passwd_p1
;
struct
passwd
*
passwd_p2
;
bool
getpwuid_threadsafe
=
false
;
static
struct
passwd
*
passwd_p1
;
static
struct
passwd
*
passwd_p2
;
static
bool
getpwuid_threadsafe
=
false
;
#endif
#if !defined(HAVE_GETADDRINFO) && !defined(HAVE_GETHOSTBYNAME_R)
struct
hostent
*
hostent_p1
;
struct
hostent
*
hostent_p2
;
char
myhostname
[
MAXHOSTNAMELEN
];
bool
gethostbyname_threadsafe
=
false
;
static
struct
hostent
*
hostent_p1
;
static
struct
hostent
*
hostent_p2
;
static
char
myhostname
[
MAXHOSTNAMELEN
];
static
bool
gethostbyname_threadsafe
=
false
;
#endif
bool
platform_is_threadsafe
=
true
;
static
bool
platform_is_threadsafe
=
true
;
int
main
(
int
argc
,
char
*
argv
[])
...
...
@@ -230,7 +230,7 @@ main(int argc, char *argv[])
}
}
void
static
void
func_call_1
(
void
)
{
#if !defined(HAVE_GETPWUID_R) || \
...
...
@@ -301,7 +301,7 @@ func_call_1(void)
}
void
static
void
func_call_2
(
void
)
{
#if !defined(HAVE_GETPWUID_R) || \
...
...
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