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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6fe2aae3
Commit
6fe2aae3
authored
Nov 30, 2019
by
Eugene Kosov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: log unsuccessful calls to pthread_attr_init() and pthread_create() before crash
parent
2855edf9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
storage/innobase/os/os0thread.cc
storage/innobase/os/os0thread.cc
+12
-2
No files found.
storage/innobase/os/os0thread.cc
View file @
6fe2aae3
...
...
@@ -143,7 +143,13 @@ os_thread_create_func(
pthread_attr_t
attr
;
#ifndef UNIV_HPUX10
pthread_attr_init
(
&
attr
);
ret
=
pthread_attr_init
(
&
attr
);
if
(
UNIV_UNLIKELY
(
ret
))
{
fprintf
(
stderr
,
"InnoDB: Error: pthread_attr_init() returned %d
\n
"
,
ret
);
exit
(
1
);
}
#endif
#ifdef UNIV_AIX
...
...
@@ -171,7 +177,11 @@ os_thread_create_func(
#else
ret
=
pthread_create
(
&
pthread
,
&
attr
,
func
,
arg
);
#endif
ut_a
(
ret
==
0
);
if
(
UNIV_UNLIKELY
(
ret
))
{
fprintf
(
stderr
,
"InnoDB: Error: pthread_create() returned %d
\n
"
,
ret
);
exit
(
1
);
}
#ifndef UNIV_HPUX10
pthread_attr_destroy
(
&
attr
);
...
...
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