Skip to content

Commit

Permalink
Configure z/TPF native stack walks as unsupported.
Browse files Browse the repository at this point in the history
Configure z/TPF native stack walks as unsupported.
Followed z/OS configurations.

Signed-off-by: jjohnst-us <[email protected]>
  • Loading branch information
jjohnst-us committed Oct 19, 2017
1 parent 08e9aa9 commit 24c0233
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions runtime/rasdump/dmpagent.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,9 @@ static const J9RASdumpSpec rasDumpSpecs[] =
400,

J9RAS_DUMP_DO_EXCLUSIVE_VM_ACCESS
#ifndef J9ZOS390
#if !defined(J9ZOS390) || !defined(J9ZTPF)
| J9RAS_DUMP_DO_PREEMPT_THREADS
#endif
#endif /* !defined(J9ZOS390) || !defined(J9ZTPF) */
, NULL
}
},
Expand Down
6 changes: 3 additions & 3 deletions runtime/rasdump/javadump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4335,11 +4335,11 @@ JavaCoreDumpWriter::writeThread(J9VMThread* vmThread, J9PlatformThread *nativeTh
frame = frame->parent_frame;
}
} else {
#if defined(J9ZOS390)
#if defined(J9ZOS390) || defined(J9ZTPF)
_OutputStream.writeCharacters("3XMTHREADINFO3 No native callstack available on this platform\n");
#else
#else /* defined(J9ZOS390) || defined(J9ZTPF) */
_OutputStream.writeCharacters("3XMTHREADINFO3 No native callstack available for this thread\n");
#endif
#endif /* defined(J9ZOS390) || defined(J9ZTPF) */
_OutputStream.writeCharacters("NULL\n");
}

Expand Down

0 comments on commit 24c0233

Please sign in to comment.