#295: Workaround for JDK 11 bug in ServerSocket.accept()
This commit is contained in:
@@ -31,6 +31,10 @@ uintptr_t& StackFrame::fp() {
|
||||
return (uintptr_t&)_ucontext->uc_mcontext.arm_fp;
|
||||
}
|
||||
|
||||
uintptr_t StackFrame::retval() {
|
||||
return (uintptr_t)_ucontext->uc_mcontext.arm_r0;
|
||||
}
|
||||
|
||||
uintptr_t StackFrame::arg0() {
|
||||
return (uintptr_t)_ucontext->uc_mcontext.arm_r0;
|
||||
}
|
||||
@@ -55,6 +59,10 @@ bool StackFrame::pop(bool trust_frame_pointer) {
|
||||
return false;
|
||||
}
|
||||
|
||||
void StackFrame::restartSyscall() {
|
||||
// Not implemented on this arch
|
||||
}
|
||||
|
||||
int StackFrame::callerLookupSlots() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user