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
1518fb17
Commit
1518fb17
authored
Jul 05, 2013
by
Yoni Fogel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refs Tokutek/ft-index#28 Fix compile failure on systems that don't support PR_SET_PTRACER
parent
fa39b2a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
portability/toku_crash.cc
portability/toku_crash.cc
+4
-1
No files found.
portability/toku_crash.cc
View file @
1518fb17
...
...
@@ -177,8 +177,11 @@ failure:
static
void
spawn_gdb
(
const
char
*
gdb_path
)
{
pid_t
parent_pid
=
getpid
();
// Give permission for this process and (more importantly) all its children to debug this process.
#if defined(PR_SET_PTRACER)
// On systems that require permission for the same user to ptrace,
// give permission for this process and (more importantly) all its children to debug this process.
prctl
(
PR_SET_PTRACER
,
parent_pid
,
0
,
0
,
0
);
#endif
fprintf
(
stderr
,
"Attempting to use gdb @[%s] on pid[%d]
\n
"
,
gdb_path
,
parent_pid
);
fflush
(
stderr
);
int
intermediate_pid
=
fork
();
...
...
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