We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3098c4 commit 8637f65Copy full SHA for 8637f65
src/hotspot/share/runtime/os.cpp
@@ -359,6 +359,7 @@ static void signal_thread_entry(JavaThread* thread, TRAPS) {
359
360
switch (sig) {
361
case SIGBREAK: {
362
+#if INCLUDE_SERVICES
363
// Check if the signal is a trigger to start the Attach Listener - in that
364
// case don't print stack traces.
365
if (!DisableAttachMechanism) {
@@ -381,6 +382,7 @@ static void signal_thread_entry(JavaThread* thread, TRAPS) {
381
382
continue;
383
}
384
385
+#endif
386
// Print stack traces
387
// Any SIGBREAK operations added here should make sure to flush
388
// the output stream (e.g. tty->flush()) after output. See 4803766.
0 commit comments