Skip to content

Commit

Permalink
Merge pull request #7292 from babsingh/main1
Browse files Browse the repository at this point in the history
Fix typo AIXPPCX -> AIXPPC
  • Loading branch information
dsouzai committed Mar 25, 2024
2 parents b7d9218 + 1762b07 commit 6c6d638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions port/unix/omrintrospect.c
Original file line number Diff line number Diff line change
Expand Up @@ -743,14 +743,14 @@ upcall_handler(int signal, siginfo_t *siginfo, void *context_arg)
pid_t pid = getpid();
uintptr_t tid = omrthread_get_ras_tid();

#if defined(AIXPPCX)
#if defined(AIXPPC)
struct sigaction handler;

/* altering the signal handler doesn't affect already queued signals on AIX */
if ((-1 == sigaction(SUSPEND_SIG, NULL, &handler)) || (handler.sa_sigaction != upcall_handler)) {
return;
}
#endif /* defined(AIXPPCX) */
#endif /* defined(AIXPPC) */

/* check that this signal was queued by this process. */
if ((SI_QUEUE != siginfo->si_code)
Expand Down

0 comments on commit 6c6d638

Please sign in to comment.