Skip to content

Commit

Permalink
Merge pull request #7323 from Deigue/openxl-wrkrd
Browse files Browse the repository at this point in the history
Open XL segfault fix and workaround for si.cpp macro collision
  • Loading branch information
babsingh authored May 1, 2024
2 parents 76d1f00 + 687ed48 commit acd6f7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions fvtest/porttest/si.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include <direct.h>
#endif /* defined(OMR_OS_WINDOWS) */
#if !defined(OMR_OS_WINDOWS)
#include <locale>
#include <grp.h>
#include <errno.h>
#if defined(J9ZOS390)
Expand Down
3 changes: 2 additions & 1 deletion thread/zos390/rasthrsup.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
uintptr_t
omrthread_get_ras_tid(void)
{
return (uintptr_t)(*(uint32_t *)pthread_self().__);
pthread_t id = pthread_self();
return (uintptr_t)*(unsigned long long *)&id;
}

0 comments on commit acd6f7e

Please sign in to comment.