aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux/handler
diff options
context:
space:
mode:
authornealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-09-29 21:55:19 +0000
committernealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-09-29 21:55:19 +0000
commit895d3d17ee873ea12b64db0df2d2e2e390c9d5e8 (patch)
treed2aace40b927c2a4de67d8bd8775372490faff26 /src/client/linux/handler
parentCheck RegisterWaitForSingleObject return in CrashGenerationServer::Start. (diff)
downloadbreakpad-895d3d17ee873ea12b64db0df2d2e2e390c9d5e8.tar.xz
New uploader for Linux with unit tests, and gflags/glog libraries
http://breakpad.appspot.com/29004 A=nealsid R=chris masone at chromium org git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@403 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/linux/handler')
-rw-r--r--src/client/linux/handler/exception_handler.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/linux/handler/exception_handler.cc b/src/client/linux/handler/exception_handler.cc
index 8738b27d..1fe7e83d 100644
--- a/src/client/linux/handler/exception_handler.cc
+++ b/src/client/linux/handler/exception_handler.cc
@@ -88,6 +88,7 @@
// A wrapper for the tgkill syscall: send a signal to a specific thread.
static int tgkill(pid_t tgid, pid_t tid, int sig) {
syscall(__NR_tgkill, tgid, tid, sig);
+ return 0;
}
namespace google_breakpad {
@@ -171,6 +172,7 @@ bool ExceptionHandler::InstallHandlers() {
return false;
old_handlers_.push_back(std::make_pair(kExceptionSignals[i], old));
}
+ return true;
}
// Runs before crashing: normal context.