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
a921615d
Commit
a921615d
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
parent
93abcb99
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
cmake_modules/TokuFeatureDetection.cmake
cmake_modules/TokuFeatureDetection.cmake
+1
-0
portability/toku_crash.cc
portability/toku_crash.cc
+3
-3
No files found.
cmake_modules/TokuFeatureDetection.cmake
View file @
a921615d
...
...
@@ -60,6 +60,7 @@ endif ()
check_symbol_exists
(
O_DIRECT
"fcntl.h"
HAVE_O_DIRECT
)
check_symbol_exists
(
F_NOCACHE
"fcntl.h"
HAVE_F_NOCACHE
)
check_symbol_exists
(
MAP_ANONYMOUS
"sys/mman.h"
HAVE_MAP_ANONYMOUS
)
check_symbol_exists
(
PR_SET_PTRACER
"sys/prctl.h"
HAVE_PR_SET_PTRACER
)
include
(
CheckFunctionExists
)
...
...
portability/toku_crash.cc
View file @
a921615d
...
...
@@ -107,9 +107,9 @@ run_gdb(pid_t parent_pid, const char *gdb_path) {
// Get pid and path to executable.
int
n
;
n
=
snprintf
(
pid_buf
,
sizeof
(
pid_buf
),
"%d"
,
parent_pid
);
paranoid_
invariant
(
n
>=
0
&&
n
<
(
int
)
sizeof
(
pid_buf
));
invariant
(
n
>=
0
&&
n
<
(
int
)
sizeof
(
pid_buf
));
n
=
snprintf
(
exe_buf
,
sizeof
(
exe_buf
),
"/proc/%d/exe"
,
parent_pid
);
paranoid_
invariant
(
n
>=
0
&&
n
<
(
int
)
sizeof
(
exe_buf
));
invariant
(
n
>=
0
&&
n
<
(
int
)
sizeof
(
exe_buf
));
dup2
(
2
,
1
);
// redirect output to stderr
// Arguments are not dynamic due to possible security holes.
...
...
@@ -177,7 +177,7 @@ failure:
static
void
spawn_gdb
(
const
char
*
gdb_path
)
{
pid_t
parent_pid
=
getpid
();
#if defined(PR_SET_PTRACER)
#if defined(
HAVE_
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
);
...
...
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