Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
devel:gcc
gcc43
gcc43-update-ucontext.diff
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File gcc43-update-ucontext.diff of Package gcc43
Index: gcc-4.3.4-20091019/libjava/include/i386-signal.h =================================================================== --- gcc-4.3.4-20091019.orig/libjava/include/i386-signal.h 2008-02-19 10:59:10.000000000 +0100 +++ gcc-4.3.4-20091019/libjava/include/i386-signal.h 2019-05-28 17:23:06.000000000 +0200 @@ -26,7 +26,7 @@ static void _Jv_##_name (int, siginfo_t #define HANDLE_DIVIDE_OVERFLOW \ do \ { \ - struct ucontext *_uc = (struct ucontext *)_p; \ + ucontext_t *_uc = (ucontext_t *)_p; \ gregset_t &_gregs = _uc->uc_mcontext.gregs; \ unsigned char *_eip = (unsigned char *)_gregs[REG_EIP]; \ \ Index: gcc-4.3.4-20091019/libjava/include/x86_64-signal.h =================================================================== --- gcc-4.3.4-20091019.orig/libjava/include/x86_64-signal.h 2008-02-19 10:59:10.000000000 +0100 +++ gcc-4.3.4-20091019/libjava/include/x86_64-signal.h 2019-05-28 17:23:06.000000000 +0200 @@ -28,7 +28,7 @@ static void _Jv_##_name (int, siginfo_t #define HANDLE_DIVIDE_OVERFLOW \ do \ { \ - struct ucontext *_uc = (struct ucontext *)_p; \ + ucontext_t *_uc = (ucontext_t *)_p; \ gregset_t &_gregs = _uc->uc_mcontext.gregs; \ unsigned char *_rip = (unsigned char *)_gregs[REG_RIP]; \ \ Index: gcc-4.3.4-20091019/gcc/config/i386/linux-unwind.h =================================================================== --- gcc-4.3.4-20091019.orig/gcc/config/i386/linux-unwind.h 2019-05-28 17:17:03.000000000 +0200 +++ gcc-4.3.4-20091019/gcc/config/i386/linux-unwind.h 2019-05-28 17:26:54.000000000 +0200 @@ -51,7 +51,7 @@ x86_64_fallback_frame_state (struct _Unw if (*(unsigned char *)(pc+0) == 0x48 && *(unsigned long *)(pc+1) == 0x050f0000000fc0c7) { - struct ucontext *uc_ = context->cfa; + ucontext_t *uc_ = context->cfa; /* The void * cast is necessary to avoid an aliasing warning. The aliasing warning is correct, but should not be a problem because it does not alias anything. */ @@ -140,7 +140,7 @@ x86_fallback_frame_state (struct _Unwind siginfo_t *pinfo; void *puc; siginfo_t info; - struct ucontext uc; + ucontext_t uc; } *rt_ = context->cfa; /* The void * cast is necessary to avoid an aliasing warning. The aliasing warning is correct, but should not be a problem
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor