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
915d1c4d
Commit
915d1c4d
authored
Jul 08, 2009
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings generated by SunStudio and GCC.
Based upon patch contributed by Stewart Smith
parent
7c28ec97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
mysql-test/lib/My/SafeProcess/safe_process.cc
mysql-test/lib/My/SafeProcess/safe_process.cc
+14
-11
No files found.
mysql-test/lib/My/SafeProcess/safe_process.cc
View file @
915d1c4d
...
...
@@ -89,7 +89,7 @@ static void die(const char* fmt, ...)
}
static
void
kill_child
(
void
)
static
void
kill_child
(
void
)
{
int
status
=
0
;
...
...
@@ -119,7 +119,7 @@ static void kill_child (void)
}
static
void
handle_abort
(
int
sig
)
extern
"C"
void
handle_abort
(
int
sig
)
{
message
(
"Got signal %d, child_pid: %d, sending ABRT"
,
sig
,
child_pid
);
...
...
@@ -128,8 +128,8 @@ static void handle_abort (int sig)
}
}
static
void
handle_signal
(
int
sig
)
extern
"C"
void
handle_signal
(
int
sig
)
{
message
(
"Got signal %d, child_pid: %d"
,
sig
,
child_pid
);
terminated
=
1
;
...
...
@@ -152,7 +152,7 @@ int main(int argc, char* const argv[] )
pid_t
own_pid
=
getpid
();
pid_t
parent_pid
=
getppid
();
bool
nocore
=
false
;
/* Install signal handlers */
signal
(
SIGTERM
,
handle_signal
);
signal
(
SIGINT
,
handle_signal
);
...
...
@@ -232,10 +232,11 @@ int main(int argc, char* const argv[] )
message
(
"setrlimit failed, errno=%d"
,
errno
);
}
}
// Signal that child is ready
buf
=
37
;
write
(
pfd
[
1
],
&
buf
,
1
);
if
((
write
(
pfd
[
1
],
&
buf
,
1
))
<
1
)
die
(
"Failed to signal that child is ready"
);
// Close write end
close
(
pfd
[
1
]);
...
...
@@ -246,8 +247,10 @@ int main(int argc, char* const argv[] )
close
(
pfd
[
1
]);
// Close unused write end
// Wait for child to signal it's ready
read
(
pfd
[
0
],
&
buf
,
1
);
if
(
buf
!=
37
)
if
((
read
(
pfd
[
0
],
&
buf
,
1
))
<
1
)
die
(
"Failed to read signal from child"
);
if
(
buf
!=
37
)
die
(
"Didn't get 37 from pipe"
);
close
(
pfd
[
0
]);
// Close read end
...
...
@@ -272,7 +275,7 @@ int main(int argc, char* const argv[] )
if
(
WIFEXITED
(
status
))
{
// Process has exited, collect return status
int
ret_code
=
WEXITSTATUS
(
status
);
ret_code
=
WEXITSTATUS
(
status
);
message
(
"Child exit: %d"
,
ret_code
);
// Exit with exit status of the child
exit
(
ret_code
);
...
...
@@ -287,6 +290,6 @@ int main(int argc, char* const argv[] )
}
kill_child
();
exit
(
1
)
;
return
1
;
}
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