mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0025750: Coding rules - eliminate GCC warning -Wunused-but-set-variable in OSD_signal.cxx for Android build
Move variable aSigInfo to the proper scope.
This commit is contained in:
parent
aad4bc1f7b
commit
7d679df3be
@ -129,11 +129,6 @@ static void Handler (const int theSignal)
|
|||||||
perror ("sigaction");
|
perror ("sigaction");
|
||||||
}
|
}
|
||||||
|
|
||||||
siginfo_t * aSigInfo = NULL;
|
|
||||||
#ifdef SA_SIGINFO
|
|
||||||
aSigInfo = theSigInfo;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(HAVE_PTHREAD_H) && defined(NO_CXX_EXCEPTION)
|
#if defined(HAVE_PTHREAD_H) && defined(NO_CXX_EXCEPTION)
|
||||||
if (pthread_self() != getOCCThread() || !Standard_ErrorHandler::IsInTryBlock()) {
|
if (pthread_self() != getOCCThread() || !Standard_ErrorHandler::IsInTryBlock()) {
|
||||||
// use the previous signal handler
|
// use the previous signal handler
|
||||||
@ -143,6 +138,12 @@ static void Handler (const int theSignal)
|
|||||||
|
|
||||||
if (asigacthandler.sa_flags & SA_SIGINFO) {
|
if (asigacthandler.sa_flags & SA_SIGINFO) {
|
||||||
void (*aCurInfoHandle)(int, siginfo_t *, void *) = asigacthandler.sa_sigaction;
|
void (*aCurInfoHandle)(int, siginfo_t *, void *) = asigacthandler.sa_sigaction;
|
||||||
|
|
||||||
|
siginfo_t * aSigInfo = NULL;
|
||||||
|
#ifdef SA_SIGINFO
|
||||||
|
aSigInfo = theSigInfo;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (aSigInfo) {
|
if (aSigInfo) {
|
||||||
switch (aSigInfo->si_signo) {
|
switch (aSigInfo->si_signo) {
|
||||||
case SIGFPE:
|
case SIGFPE:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user