-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add zOS UpcallThunkGen function stubs #15873
Conversation
@ChengJin01 / @tajila : Can you review? Thanks! |
cc7c9a4
to
fd54fac
Compare
I have tested this with SPEC 17 internally on z/OS, and build now completes successfully:
|
Overall, the changes Look good to me. |
runtime/vm/mz64/UpcallThunkGen.cpp
Outdated
void * | ||
createUpcallThunk(J9UpcallMetaData *metaData) | ||
{ | ||
// Return the thunk descriptor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace the comment //
with /*...*/
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in dae6849. Thx!
Add empty stub function implementations for upcall thunk generation support to allow OpenJ9 to build on z/OS with spec version >= 16. Actual implementation of the upcall thunks to be implemented in the future. Signed-off-by: Joran Siu <joransiu@ca.ibm.com>
fd54fac
to
dae6849
Compare
@tajila : Can you review when you get a chance? Would like to get zOS builds working again. Thanks! |
I guess there isnt a PR build that we can run to test this ATM |
Add empty stub function implementations for upcall thunk generation support to allow OpenJ9 to build on z/OS with spec version >= 16.
Actual implementation of the upcall thunks to be implemented in the future.
Signed-off-by: Joran Siu joransiu@ca.ibm.com