diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-07-02 18:13:33 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-07-02 18:13:33 +0000 |
commit | 1260067e4274379a8abd3b95f7dadb0193796314 (patch) | |
tree | 6fee5c8472d1db6400776235d9bc2087092598b7 /src/client | |
parent | Add an API to pass exception information into the handler (#192). (diff) | |
download | breakpad-1260067e4274379a8abd3b95f7dadb0193796314.tar.xz |
Issue 190 - 32 bit build fails on a 64 bit Linux system. Patch by wgianopoulos, r=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@192 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/linux/handler/exception_handler.cc | 1 | ||||
-rw-r--r-- | src/client/linux/handler/minidump_generator.cc | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/client/linux/handler/exception_handler.cc b/src/client/linux/handler/exception_handler.cc index 2036dd05..e23f0f5f 100644 --- a/src/client/linux/handler/exception_handler.cc +++ b/src/client/linux/handler/exception_handler.cc @@ -29,7 +29,6 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#include <asm/sigcontext.h> #include <signal.h> #include <sys/stat.h> #include <sys/types.h> diff --git a/src/client/linux/handler/minidump_generator.cc b/src/client/linux/handler/minidump_generator.cc index ea1b54a1..8d4d1315 100644 --- a/src/client/linux/handler/minidump_generator.cc +++ b/src/client/linux/handler/minidump_generator.cc @@ -31,7 +31,7 @@ #include <fcntl.h> #include <pthread.h> -#include <asm/sigcontext.h> +#include <signal.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> |