Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4ba30341
Commit
4ba30341
authored
Jul 22, 2011
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged the fix of bug #12779790 to mysql-5.5-security
parent
589896d5
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
15 deletions
+0
-15
config.h.cmake
config.h.cmake
+0
-1
configure.cmake
configure.cmake
+0
-1
dbug/dbug_analyze.c
dbug/dbug_analyze.c
+0
-3
dbug/my_main.c
dbug/my_main.c
+0
-3
dbug/tests.c
dbug/tests.c
+0
-3
mysys/my_init.c
mysys/my_init.c
+0
-4
No files found.
config.h.cmake
View file @
4ba30341
...
...
@@ -219,7 +219,6 @@
#cmakedefine HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
#cmakedefine HAVE_PTHREAD_CONDATTR_CREATE 1
#cmakedefine HAVE_PTHREAD_CONDATTR_SETCLOCK 1
#cmakedefine HAVE_PTHREAD_INIT 1
#cmakedefine HAVE_PTHREAD_KEY_DELETE 1
#cmakedefine HAVE_PTHREAD_KEY_DELETE 1
#cmakedefine HAVE_PTHREAD_KILL 1
...
...
configure.cmake
View file @
4ba30341
...
...
@@ -391,7 +391,6 @@ CHECK_FUNCTION_EXISTS (pthread_attr_setscope HAVE_PTHREAD_ATTR_SETSCOPE)
CHECK_FUNCTION_EXISTS
(
pthread_attr_setstacksize HAVE_PTHREAD_ATTR_SETSTACKSIZE
)
CHECK_FUNCTION_EXISTS
(
pthread_condattr_create HAVE_PTHREAD_CONDATTR_CREATE
)
CHECK_FUNCTION_EXISTS
(
pthread_condattr_setclock HAVE_PTHREAD_CONDATTR_SETCLOCK
)
CHECK_FUNCTION_EXISTS
(
pthread_init HAVE_PTHREAD_INIT
)
CHECK_FUNCTION_EXISTS
(
pthread_key_delete HAVE_PTHREAD_KEY_DELETE
)
CHECK_FUNCTION_EXISTS
(
pthread_rwlock_rdlock HAVE_PTHREAD_RWLOCK_RDLOCK
)
CHECK_FUNCTION_EXISTS
(
pthread_sigmask HAVE_PTHREAD_SIGMASK
)
...
...
dbug/dbug_analyze.c
View file @
4ba30341
...
...
@@ -571,9 +571,6 @@ int main (int argc, char **argv)
FILE
*
infile
;
FILE
*
outfile
=
{
stdout
};
#if defined(HAVE_PTHREAD_INIT)
pthread_init
();
/* Must be called before DBUG_ENTER */
#endif
my_thread_global_init
();
{
DBUG_ENTER
(
"main"
);
...
...
dbug/my_main.c
View file @
4ba30341
...
...
@@ -16,9 +16,6 @@ char *argv[];
{
register
int
result
,
ix
;
extern
int
factorial
(
int
);
#if defined(HAVE_PTHREAD_INIT)
pthread_init
();
/* Must be called before DBUG_ENTER */
#endif
my_thread_global_init
();
{
...
...
dbug/tests.c
View file @
4ba30341
...
...
@@ -44,9 +44,6 @@ int main (int argc, char *argv[])
if
(
argc
==
1
)
return
0
;
#if defined(HAVE_PTHREAD_INIT)
pthread_init
();
/* Must be called before DBUG_ENTER */
#endif
my_thread_global_init
();
dup2
(
1
,
2
);
...
...
mysys/my_init.c
View file @
4ba30341
...
...
@@ -99,10 +99,6 @@ my_bool my_init(void)
fastmutex_global_init
();
/* Must be called early */
#endif
#if defined(HAVE_PTHREAD_INIT)
pthread_init
();
/* Must be called before DBUG_ENTER */
#endif
/* $HOME is needed early to parse configuration files located in ~/ */
if
((
home_dir
=
getenv
(
"HOME"
))
!=
0
)
home_dir
=
intern_filename
(
home_dir_buff
,
home_dir
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment