From 895d3d17ee873ea12b64db0df2d2e2e390c9d5e8 Mon Sep 17 00:00:00 2001 From: nealsid Date: Tue, 29 Sep 2009 21:55:19 +0000 Subject: 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 --- src/client/linux/handler/exception_handler.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/client/linux/handler') 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. -- cgit v1.2.1