diff options
author | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-09-15 22:31:57 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-09-15 22:31:57 +0000 |
commit | 0e3b7020b8f679259acfcfdbea4d39e1c13e6f19 (patch) | |
tree | 8b2737cd0fdbb541a8f38f7175894a7dd1d7b436 /src/client/linux/handler | |
parent | Revert revision 658 ('Add glog style logging to symupload'). (diff) | |
download | breakpad-0e3b7020b8f679259acfcfdbea4d39e1c13e6f19.tar.xz |
Import linux_syscall_support.h from linux-syscall-support.googlecode.com instead of using our own copy.
Review URL: http://breakpad.appspot.com/192001
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@686 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/linux/handler')
-rw-r--r-- | src/client/linux/handler/exception_handler.cc | 2 | ||||
-rw-r--r-- | src/client/linux/handler/exception_handler_unittest.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/client/linux/handler/exception_handler.cc b/src/client/linux/handler/exception_handler.cc index 87cfa3a2..5af8f872 100644 --- a/src/client/linux/handler/exception_handler.cc +++ b/src/client/linux/handler/exception_handler.cc @@ -85,11 +85,11 @@ #include <vector> #include "common/linux/linux_libc_support.h" -#include "common/linux/linux_syscall_support.h" #include "common/linux/memory.h" #include "client/linux/minidump_writer/minidump_writer.h" #include "common/linux/guid_creator.h" #include "common/linux/eintr_wrapper.h" +#include "third_party/lss/linux_syscall_support.h" #ifndef PR_SET_PTRACER #define PR_SET_PTRACER 0x59616d61 diff --git a/src/client/linux/handler/exception_handler_unittest.cc b/src/client/linux/handler/exception_handler_unittest.cc index 9747fe71..63351fa5 100644 --- a/src/client/linux/handler/exception_handler_unittest.cc +++ b/src/client/linux/handler/exception_handler_unittest.cc @@ -36,12 +36,12 @@ #include <sys/socket.h> #include <sys/uio.h> +#include "breakpad_googletest_includes.h" #include "client/linux/handler/exception_handler.h" #include "client/linux/minidump_writer/minidump_writer.h" #include "common/linux/eintr_wrapper.h" #include "common/linux/linux_libc_support.h" -#include "common/linux/linux_syscall_support.h" -#include "breakpad_googletest_includes.h" +#include "third_party/lss/linux_syscall_support.h" using namespace google_breakpad; |