hotspot/src/os/posix/vm/os_posix.cpp
author goetz
Thu, 22 Aug 2013 09:39:54 -0700
changeset 22827 07d991d45a51
parent 22826 3ee6886e718d
child 22828 17ecb098bc1e
permissions -rw-r--r--
8023033: PPC64 (part 13): basic changes for AIX Summary: Added AIX includes alpha-sorted before BSD. Fix compilation issues with xlC in shared code. Basic shared platform dependend adaption (vm_version etc.). Reviewed-by: kvn, dholmes, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
     1
/*
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     2
 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     4
 *
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     7
 * published by the Free Software Foundation.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     8
 *
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    13
 * accompanied this code).
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    14
 *
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    18
 *
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    21
 * questions.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    22
 *
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    23
 */
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    24
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    25
#include "utilities/globalDefinitions.hpp"
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    26
#include "prims/jvm.h"
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    27
#include "runtime/frame.inline.hpp"
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    28
#include "runtime/os.hpp"
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    29
#include "utilities/vmError.hpp"
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    30
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    31
#include <signal.h>
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    32
#include <unistd.h>
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    33
#include <sys/resource.h>
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
    34
#include <sys/utsname.h>
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
    35
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    36
// Todo: provide a os::get_max_process_id() or similar. Number of processes
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    37
// may have been configured, can be read more accurately from proc fs etc.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    38
#ifndef MAX_PID
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    39
#define MAX_PID INT_MAX
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    40
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    41
#define IS_VALID_PID(p) (p > 0 && p < MAX_PID)
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    42
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    43
// Check core dump limit and report possible place where core can be found
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    44
void os::check_or_create_dump(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize) {
13198
271c557a7623 7129724: MAC: Core file location is wrong in crash report
mikael
parents: 13195
diff changeset
    45
  int n;
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    46
  struct rlimit rlim;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    47
  bool success;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    48
13198
271c557a7623 7129724: MAC: Core file location is wrong in crash report
mikael
parents: 13195
diff changeset
    49
  n = get_core_path(buffer, bufferSize);
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    50
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    51
  if (getrlimit(RLIMIT_CORE, &rlim) != 0) {
13198
271c557a7623 7129724: MAC: Core file location is wrong in crash report
mikael
parents: 13195
diff changeset
    52
    jio_snprintf(buffer + n, bufferSize - n, "/core or core.%d (may not exist)", current_process_id());
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    53
    success = true;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    54
  } else {
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    55
    switch(rlim.rlim_cur) {
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    56
      case RLIM_INFINITY:
13198
271c557a7623 7129724: MAC: Core file location is wrong in crash report
mikael
parents: 13195
diff changeset
    57
        jio_snprintf(buffer + n, bufferSize - n, "/core or core.%d", current_process_id());
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    58
        success = true;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    59
        break;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    60
      case 0:
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    61
        jio_snprintf(buffer, bufferSize, "Core dumps have been disabled. To enable core dumping, try \"ulimit -c unlimited\" before starting Java again");
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    62
        success = false;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    63
        break;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    64
      default:
13198
271c557a7623 7129724: MAC: Core file location is wrong in crash report
mikael
parents: 13195
diff changeset
    65
        jio_snprintf(buffer + n, bufferSize - n, "/core or core.%d (max size %lu kB). To ensure a full core dump, try \"ulimit -c unlimited\" before starting Java again", current_process_id(), (unsigned long)(rlim.rlim_cur >> 10));
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    66
        success = true;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    67
        break;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    68
    }
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    69
  }
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    70
  VMError::report_coredump_status(buffer, success);
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    71
}
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
diff changeset
    72
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    73
address os::get_caller_pc(int n) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    74
#ifdef _NMT_NOINLINE_
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    75
  n ++;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    76
#endif
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    77
  frame fr = os::current_frame();
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    78
  while (n > 0 && fr.pc() &&
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    79
    !os::is_first_C_frame(&fr) && fr.sender_pc()) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    80
    fr = os::get_sender_for_C_frame(&fr);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    81
    n --;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    82
  }
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    83
  if (n == 0) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    84
    return fr.pc();
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    85
  } else {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    86
    return NULL;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    87
  }
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    88
}
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12735
diff changeset
    89
11418
66ca80da30e2 7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents: 8476
diff changeset
    90
int os::get_last_error() {
66ca80da30e2 7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents: 8476
diff changeset
    91
  return errno;
66ca80da30e2 7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents: 8476
diff changeset
    92
}
66ca80da30e2 7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents: 8476
diff changeset
    93
8476
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
    94
bool os::is_debugger_attached() {
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
    95
  // not implemented
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
    96
  return false;
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
    97
}
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
    98
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
    99
void os::wait_for_keypress_at_exit(void) {
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
   100
  // don't do anything on posix platforms
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
   101
  return;
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
   102
}
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   103
14840
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   104
// Multiple threads can race in this code, and can remap over each other with MAP_FIXED,
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   105
// so on posix, unmap the section at the start and at the end of the chunk that we mapped
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   106
// rather than unmapping and remapping the whole chunk to get requested alignment.
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   107
char* os::reserve_memory_aligned(size_t size, size_t alignment) {
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   108
  assert((alignment & (os::vm_allocation_granularity() - 1)) == 0,
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   109
      "Alignment must be a multiple of allocation granularity (page size)");
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   110
  assert((size & (alignment -1)) == 0, "size must be 'alignment' aligned");
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   111
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   112
  size_t extra_size = size + alignment;
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   113
  assert(extra_size >= size, "overflow, size is too large to allow alignment");
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   114
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   115
  char* extra_base = os::reserve_memory(extra_size, NULL, alignment);
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   116
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   117
  if (extra_base == NULL) {
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   118
    return NULL;
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   119
  }
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   120
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   121
  // Do manual alignment
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   122
  char* aligned_base = (char*) align_size_up((uintptr_t) extra_base, alignment);
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   123
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   124
  // [  |                                       |  ]
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   125
  // ^ extra_base
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   126
  //    ^ extra_base + begin_offset == aligned_base
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   127
  //     extra_base + begin_offset + size       ^
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   128
  //                       extra_base + extra_size ^
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   129
  // |<>| == begin_offset
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   130
  //                              end_offset == |<>|
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   131
  size_t begin_offset = aligned_base - extra_base;
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   132
  size_t end_offset = (extra_base + extra_size) - (aligned_base + size);
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   133
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   134
  if (begin_offset > 0) {
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   135
      os::release_memory(extra_base, begin_offset);
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   136
  }
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   137
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   138
  if (end_offset > 0) {
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   139
      os::release_memory(extra_base + begin_offset + size, end_offset);
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   140
  }
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   141
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   142
  return aligned_base;
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   143
}
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13963
diff changeset
   144
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   145
void os::Posix::print_load_average(outputStream* st) {
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   146
  st->print("load average:");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   147
  double loadavg[3];
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   148
  os::loadavg(loadavg, 3);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   149
  st->print("%0.02f %0.02f %0.02f", loadavg[0], loadavg[1], loadavg[2]);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   150
  st->cr();
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   151
}
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   152
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   153
void os::Posix::print_rlimit_info(outputStream* st) {
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   154
  st->print("rlimit:");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   155
  struct rlimit rlim;
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   156
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   157
  st->print(" STACK ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   158
  getrlimit(RLIMIT_STACK, &rlim);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   159
  if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   160
  else st->print("%uk", rlim.rlim_cur >> 10);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   161
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   162
  st->print(", CORE ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   163
  getrlimit(RLIMIT_CORE, &rlim);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   164
  if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   165
  else st->print("%uk", rlim.rlim_cur >> 10);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   166
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   167
  // Isn't there on solaris
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 22826
diff changeset
   168
#if! defined(TARGET_OS_FAMILY_solaris) && !defined(TARGET_OS_FAMILY_aix)
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   169
  st->print(", NPROC ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   170
  getrlimit(RLIMIT_NPROC, &rlim);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   171
  if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   172
  else st->print("%d", rlim.rlim_cur);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   173
#endif
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   174
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   175
  st->print(", NOFILE ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   176
  getrlimit(RLIMIT_NOFILE, &rlim);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   177
  if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   178
  else st->print("%d", rlim.rlim_cur);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   179
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   180
  st->print(", AS ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   181
  getrlimit(RLIMIT_AS, &rlim);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   182
  if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   183
  else st->print("%uk", rlim.rlim_cur >> 10);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   184
  st->cr();
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   185
}
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   186
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   187
void os::Posix::print_uname_info(outputStream* st) {
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   188
  // kernel
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   189
  st->print("uname:");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   190
  struct utsname name;
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   191
  uname(&name);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   192
  st->print(name.sysname); st->print(" ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   193
  st->print(name.release); st->print(" ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   194
  st->print(name.version); st->print(" ");
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   195
  st->print(name.machine);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   196
  st->cr();
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   197
}
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   198
16605
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   199
bool os::has_allocatable_memory_limit(julong* limit) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   200
  struct rlimit rlim;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   201
  int getrlimit_res = getrlimit(RLIMIT_AS, &rlim);
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   202
  // if there was an error when calling getrlimit, assume that there is no limitation
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   203
  // on virtual memory.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   204
  bool result;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   205
  if ((getrlimit_res != 0) || (rlim.rlim_cur == RLIM_INFINITY)) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   206
    result = false;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   207
  } else {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   208
    *limit = (julong)rlim.rlim_cur;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   209
    result = true;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   210
  }
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   211
#ifdef _LP64
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   212
  return result;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   213
#else
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   214
  // arbitrary virtual space limit for 32 bit Unices found by testing. If
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   215
  // getrlimit above returned a limit, bound it with this limit. Otherwise
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   216
  // directly use it.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   217
  const julong max_virtual_limit = (julong)3800*M;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   218
  if (result) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   219
    *limit = MIN2(*limit, max_virtual_limit);
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   220
  } else {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   221
    *limit = max_virtual_limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   222
  }
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 11418
diff changeset
   223
16605
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   224
  // bound by actually allocatable memory. The algorithm uses two bounds, an
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   225
  // upper and a lower limit. The upper limit is the current highest amount of
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   226
  // memory that could not be allocated, the lower limit is the current highest
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   227
  // amount of memory that could be allocated.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   228
  // The algorithm iteratively refines the result by halving the difference
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   229
  // between these limits, updating either the upper limit (if that value could
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   230
  // not be allocated) or the lower limit (if the that value could be allocated)
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   231
  // until the difference between these limits is "small".
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   232
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   233
  // the minimum amount of memory we care about allocating.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   234
  const julong min_allocation_size = M;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   235
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   236
  julong upper_limit = *limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   237
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   238
  // first check a few trivial cases
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   239
  if (is_allocatable(upper_limit) || (upper_limit <= min_allocation_size)) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   240
    *limit = upper_limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   241
  } else if (!is_allocatable(min_allocation_size)) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   242
    // we found that not even min_allocation_size is allocatable. Return it
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   243
    // anyway. There is no point to search for a better value any more.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   244
    *limit = min_allocation_size;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   245
  } else {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   246
    // perform the binary search.
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   247
    julong lower_limit = min_allocation_size;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   248
    while ((upper_limit - lower_limit) > min_allocation_size) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   249
      julong temp_limit = ((upper_limit - lower_limit) / 2) + lower_limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   250
      temp_limit = align_size_down_(temp_limit, min_allocation_size);
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   251
      if (is_allocatable(temp_limit)) {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   252
        lower_limit = temp_limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   253
      } else {
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   254
        upper_limit = temp_limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   255
      }
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   256
    }
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   257
    *limit = lower_limit;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   258
  }
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   259
  return true;
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   260
#endif
ba13efd453bc 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 14840
diff changeset
   261
}
17121
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   262
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   263
const char* os::get_current_directory(char *buf, size_t buflen) {
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   264
  return getcwd(buf, buflen);
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   265
}
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   266
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   267
FILE* os::open(int fd, const char* mode) {
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   268
  return ::fdopen(fd, mode);
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 16605
diff changeset
   269
}
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   270
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   271
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   272
// Returned string is a constant. For unknown signals "UNKNOWN" is returned.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   273
const char* os::Posix::get_signal_name(int sig, char* out, size_t outlen) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   274
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   275
  static const struct {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   276
    int sig; const char* name;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   277
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   278
  info[] =
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   279
  {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   280
    {  SIGABRT,     "SIGABRT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   281
#ifdef SIGAIO
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   282
    {  SIGAIO,      "SIGAIO" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   283
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   284
    {  SIGALRM,     "SIGALRM" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   285
#ifdef SIGALRM1
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   286
    {  SIGALRM1,    "SIGALRM1" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   287
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   288
    {  SIGBUS,      "SIGBUS" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   289
#ifdef SIGCANCEL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   290
    {  SIGCANCEL,   "SIGCANCEL" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   291
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   292
    {  SIGCHLD,     "SIGCHLD" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   293
#ifdef SIGCLD
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   294
    {  SIGCLD,      "SIGCLD" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   295
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   296
    {  SIGCONT,     "SIGCONT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   297
#ifdef SIGCPUFAIL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   298
    {  SIGCPUFAIL,  "SIGCPUFAIL" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   299
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   300
#ifdef SIGDANGER
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   301
    {  SIGDANGER,   "SIGDANGER" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   302
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   303
#ifdef SIGDIL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   304
    {  SIGDIL,      "SIGDIL" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   305
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   306
#ifdef SIGEMT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   307
    {  SIGEMT,      "SIGEMT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   308
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   309
    {  SIGFPE,      "SIGFPE" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   310
#ifdef SIGFREEZE
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   311
    {  SIGFREEZE,   "SIGFREEZE" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   312
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   313
#ifdef SIGGFAULT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   314
    {  SIGGFAULT,   "SIGGFAULT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   315
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   316
#ifdef SIGGRANT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   317
    {  SIGGRANT,    "SIGGRANT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   318
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   319
    {  SIGHUP,      "SIGHUP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   320
    {  SIGILL,      "SIGILL" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   321
    {  SIGINT,      "SIGINT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   322
#ifdef SIGIO
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   323
    {  SIGIO,       "SIGIO" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   324
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   325
#ifdef SIGIOINT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   326
    {  SIGIOINT,    "SIGIOINT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   327
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   328
#ifdef SIGIOT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   329
  // SIGIOT is there for BSD compatibility, but on most Unices just a
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   330
  // synonym for SIGABRT. The result should be "SIGABRT", not
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   331
  // "SIGIOT".
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   332
  #if (SIGIOT != SIGABRT )
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   333
    {  SIGIOT,      "SIGIOT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   334
  #endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   335
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   336
#ifdef SIGKAP
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   337
    {  SIGKAP,      "SIGKAP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   338
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   339
    {  SIGKILL,     "SIGKILL" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   340
#ifdef SIGLOST
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   341
    {  SIGLOST,     "SIGLOST" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   342
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   343
#ifdef SIGLWP
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   344
    {  SIGLWP,      "SIGLWP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   345
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   346
#ifdef SIGLWPTIMER
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   347
    {  SIGLWPTIMER, "SIGLWPTIMER" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   348
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   349
#ifdef SIGMIGRATE
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   350
    {  SIGMIGRATE,  "SIGMIGRATE" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   351
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   352
#ifdef SIGMSG
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   353
    {  SIGMSG,      "SIGMSG" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   354
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   355
    {  SIGPIPE,     "SIGPIPE" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   356
#ifdef SIGPOLL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   357
    {  SIGPOLL,     "SIGPOLL" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   358
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   359
#ifdef SIGPRE
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   360
    {  SIGPRE,      "SIGPRE" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   361
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   362
    {  SIGPROF,     "SIGPROF" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   363
#ifdef SIGPTY
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   364
    {  SIGPTY,      "SIGPTY" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   365
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   366
#ifdef SIGPWR
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   367
    {  SIGPWR,      "SIGPWR" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   368
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   369
    {  SIGQUIT,     "SIGQUIT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   370
#ifdef SIGRECONFIG
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   371
    {  SIGRECONFIG, "SIGRECONFIG" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   372
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   373
#ifdef SIGRECOVERY
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   374
    {  SIGRECOVERY, "SIGRECOVERY" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   375
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   376
#ifdef SIGRESERVE
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   377
    {  SIGRESERVE,  "SIGRESERVE" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   378
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   379
#ifdef SIGRETRACT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   380
    {  SIGRETRACT,  "SIGRETRACT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   381
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   382
#ifdef SIGSAK
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   383
    {  SIGSAK,      "SIGSAK" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   384
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   385
    {  SIGSEGV,     "SIGSEGV" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   386
#ifdef SIGSOUND
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   387
    {  SIGSOUND,    "SIGSOUND" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   388
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   389
    {  SIGSTOP,     "SIGSTOP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   390
    {  SIGSYS,      "SIGSYS" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   391
#ifdef SIGSYSERROR
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   392
    {  SIGSYSERROR, "SIGSYSERROR" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   393
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   394
#ifdef SIGTALRM
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   395
    {  SIGTALRM,    "SIGTALRM" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   396
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   397
    {  SIGTERM,     "SIGTERM" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   398
#ifdef SIGTHAW
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   399
    {  SIGTHAW,     "SIGTHAW" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   400
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   401
    {  SIGTRAP,     "SIGTRAP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   402
#ifdef SIGTSTP
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   403
    {  SIGTSTP,     "SIGTSTP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   404
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   405
    {  SIGTTIN,     "SIGTTIN" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   406
    {  SIGTTOU,     "SIGTTOU" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   407
#ifdef SIGURG
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   408
    {  SIGURG,      "SIGURG" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   409
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   410
    {  SIGUSR1,     "SIGUSR1" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   411
    {  SIGUSR2,     "SIGUSR2" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   412
#ifdef SIGVIRT
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   413
    {  SIGVIRT,     "SIGVIRT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   414
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   415
    {  SIGVTALRM,   "SIGVTALRM" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   416
#ifdef SIGWAITING
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   417
    {  SIGWAITING,  "SIGWAITING" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   418
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   419
#ifdef SIGWINCH
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   420
    {  SIGWINCH,    "SIGWINCH" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   421
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   422
#ifdef SIGWINDOW
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   423
    {  SIGWINDOW,   "SIGWINDOW" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   424
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   425
    {  SIGXCPU,     "SIGXCPU" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   426
    {  SIGXFSZ,     "SIGXFSZ" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   427
#ifdef SIGXRES
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   428
    {  SIGXRES,     "SIGXRES" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   429
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   430
    { -1, NULL }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   431
  };
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   432
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   433
  const char* ret = NULL;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   434
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   435
#ifdef SIGRTMIN
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   436
  if (sig >= SIGRTMIN && sig <= SIGRTMAX) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   437
    if (sig == SIGRTMIN) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   438
      ret = "SIGRTMIN";
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   439
    } else if (sig == SIGRTMAX) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   440
      ret = "SIGRTMAX";
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   441
    } else {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   442
      jio_snprintf(out, outlen, "SIGRTMIN+%d", sig - SIGRTMIN);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   443
      return out;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   444
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   445
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   446
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   447
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   448
  if (sig > 0) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   449
    for (int idx = 0; info[idx].sig != -1; idx ++) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   450
      if (info[idx].sig == sig) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   451
        ret = info[idx].name;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   452
        break;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   453
      }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   454
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   455
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   456
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   457
  if (!ret) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   458
    if (!is_valid_signal(sig)) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   459
      ret = "INVALID";
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   460
    } else {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   461
      ret = "UNKNOWN";
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   462
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   463
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   464
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   465
  jio_snprintf(out, outlen, ret);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   466
  return out;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   467
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   468
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   469
// Returns true if signal number is valid.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   470
bool os::Posix::is_valid_signal(int sig) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   471
  // MacOS not really POSIX compliant: sigaddset does not return
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   472
  // an error for invalid signal numbers. However, MacOS does not
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   473
  // support real time signals and simply seems to have just 33
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   474
  // signals with no holes in the signal range.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   475
#ifdef __APPLE__
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   476
  return sig >= 1 && sig < NSIG;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   477
#else
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   478
  // Use sigaddset to check for signal validity.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   479
  sigset_t set;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   480
  if (sigaddset(&set, sig) == -1 && errno == EINVAL) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   481
    return false;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   482
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   483
  return true;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   484
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   485
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   486
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   487
#define NUM_IMPORTANT_SIGS 32
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   488
// Returns one-line short description of a signal set in a user provided buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   489
const char* os::Posix::describe_signal_set_short(const sigset_t* set, char* buffer, size_t buf_size) {
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 22826
diff changeset
   490
  assert(buf_size == (NUM_IMPORTANT_SIGS + 1), "wrong buffer size");
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   491
  // Note: for shortness, just print out the first 32. That should
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   492
  // cover most of the useful ones, apart from realtime signals.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   493
  for (int sig = 1; sig <= NUM_IMPORTANT_SIGS; sig++) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   494
    const int rc = sigismember(set, sig);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   495
    if (rc == -1 && errno == EINVAL) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   496
      buffer[sig-1] = '?';
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   497
    } else {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   498
      buffer[sig-1] = rc == 0 ? '0' : '1';
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   499
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   500
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   501
  buffer[NUM_IMPORTANT_SIGS] = 0;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   502
  return buffer;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   503
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   504
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   505
// Prints one-line description of a signal set.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   506
void os::Posix::print_signal_set_short(outputStream* st, const sigset_t* set) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   507
  char buf[NUM_IMPORTANT_SIGS + 1];
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   508
  os::Posix::describe_signal_set_short(set, buf, sizeof(buf));
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   509
  st->print(buf);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   510
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   511
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   512
// Writes one-line description of a combination of sigaction.sa_flags into a user
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   513
// provided buffer. Returns that buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   514
const char* os::Posix::describe_sa_flags(int flags, char* buffer, size_t size) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   515
  char* p = buffer;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   516
  size_t remaining = size;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   517
  bool first = true;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   518
  int idx = 0;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   519
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   520
  assert(buffer, "invalid argument");
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   521
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   522
  if (size == 0) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   523
    return buffer;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   524
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   525
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   526
  strncpy(buffer, "none", size);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   527
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   528
  const struct {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   529
    int i;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   530
    const char* s;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   531
  } flaginfo [] = {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   532
    { SA_NOCLDSTOP, "SA_NOCLDSTOP" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   533
    { SA_ONSTACK,   "SA_ONSTACK"   },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   534
    { SA_RESETHAND, "SA_RESETHAND" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   535
    { SA_RESTART,   "SA_RESTART"   },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   536
    { SA_SIGINFO,   "SA_SIGINFO"   },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   537
    { SA_NOCLDWAIT, "SA_NOCLDWAIT" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   538
    { SA_NODEFER,   "SA_NODEFER"   },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   539
#ifdef AIX
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   540
    { SA_ONSTACK,   "SA_ONSTACK"   },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   541
    { SA_OLDSTYLE,  "SA_OLDSTYLE"  },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   542
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   543
    { 0, NULL }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   544
  };
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   545
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   546
  for (idx = 0; flaginfo[idx].s && remaining > 1; idx++) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   547
    if (flags & flaginfo[idx].i) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   548
      if (first) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   549
        jio_snprintf(p, remaining, "%s", flaginfo[idx].s);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   550
        first = false;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   551
      } else {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   552
        jio_snprintf(p, remaining, "|%s", flaginfo[idx].s);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   553
      }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   554
      const size_t len = strlen(p);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   555
      p += len;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   556
      remaining -= len;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   557
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   558
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   559
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   560
  buffer[size - 1] = '\0';
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   561
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   562
  return buffer;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   563
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   564
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   565
// Prints one-line description of a combination of sigaction.sa_flags.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   566
void os::Posix::print_sa_flags(outputStream* st, int flags) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   567
  char buffer[0x100];
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   568
  os::Posix::describe_sa_flags(flags, buffer, sizeof(buffer));
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   569
  st->print(buffer);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   570
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   571
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   572
// Helper function for os::Posix::print_siginfo_...():
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   573
// return a textual description for signal code.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   574
struct enum_sigcode_desc_t {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   575
  const char* s_name;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   576
  const char* s_desc;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   577
};
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   578
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   579
static bool get_signal_code_description(const siginfo_t* si, enum_sigcode_desc_t* out) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   580
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   581
  const struct {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   582
    int sig; int code; const char* s_code; const char* s_desc;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   583
  } t1 [] = {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   584
    { SIGILL,  ILL_ILLOPC,   "ILL_ILLOPC",   "Illegal opcode." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   585
    { SIGILL,  ILL_ILLOPN,   "ILL_ILLOPN",   "Illegal operand." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   586
    { SIGILL,  ILL_ILLADR,   "ILL_ILLADR",   "Illegal addressing mode." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   587
    { SIGILL,  ILL_ILLTRP,   "ILL_ILLTRP",   "Illegal trap." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   588
    { SIGILL,  ILL_PRVOPC,   "ILL_PRVOPC",   "Privileged opcode." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   589
    { SIGILL,  ILL_PRVREG,   "ILL_PRVREG",   "Privileged register." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   590
    { SIGILL,  ILL_COPROC,   "ILL_COPROC",   "Coprocessor error." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   591
    { SIGILL,  ILL_BADSTK,   "ILL_BADSTK",   "Internal stack error." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   592
#if defined(IA64) && defined(LINUX)
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   593
    { SIGILL,  ILL_BADIADDR, "ILL_BADIADDR", "Unimplemented instruction address" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   594
    { SIGILL,  ILL_BREAK,    "ILL_BREAK",    "Application Break instruction" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   595
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   596
    { SIGFPE,  FPE_INTDIV,   "FPE_INTDIV",   "Integer divide by zero." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   597
    { SIGFPE,  FPE_INTOVF,   "FPE_INTOVF",   "Integer overflow." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   598
    { SIGFPE,  FPE_FLTDIV,   "FPE_FLTDIV",   "Floating-point divide by zero." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   599
    { SIGFPE,  FPE_FLTOVF,   "FPE_FLTOVF",   "Floating-point overflow." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   600
    { SIGFPE,  FPE_FLTUND,   "FPE_FLTUND",   "Floating-point underflow." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   601
    { SIGFPE,  FPE_FLTRES,   "FPE_FLTRES",   "Floating-point inexact result." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   602
    { SIGFPE,  FPE_FLTINV,   "FPE_FLTINV",   "Invalid floating-point operation." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   603
    { SIGFPE,  FPE_FLTSUB,   "FPE_FLTSUB",   "Subscript out of range." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   604
    { SIGSEGV, SEGV_MAPERR,  "SEGV_MAPERR",  "Address not mapped to object." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   605
    { SIGSEGV, SEGV_ACCERR,  "SEGV_ACCERR",  "Invalid permissions for mapped object." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   606
#ifdef AIX
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   607
    // no explanation found what keyerr would be
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   608
    { SIGSEGV, SEGV_KEYERR,  "SEGV_KEYERR",  "key error" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   609
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   610
#if defined(IA64) && !defined(AIX)
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   611
    { SIGSEGV, SEGV_PSTKOVF, "SEGV_PSTKOVF", "Paragraph stack overflow" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   612
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   613
    { SIGBUS,  BUS_ADRALN,   "BUS_ADRALN",   "Invalid address alignment." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   614
    { SIGBUS,  BUS_ADRERR,   "BUS_ADRERR",   "Nonexistent physical address." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   615
    { SIGBUS,  BUS_OBJERR,   "BUS_OBJERR",   "Object-specific hardware error." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   616
    { SIGTRAP, TRAP_BRKPT,   "TRAP_BRKPT",   "Process breakpoint." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   617
    { SIGTRAP, TRAP_TRACE,   "TRAP_TRACE",   "Process trace trap." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   618
    { SIGCHLD, CLD_EXITED,   "CLD_EXITED",   "Child has exited." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   619
    { SIGCHLD, CLD_KILLED,   "CLD_KILLED",   "Child has terminated abnormally and did not create a core file." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   620
    { SIGCHLD, CLD_DUMPED,   "CLD_DUMPED",   "Child has terminated abnormally and created a core file." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   621
    { SIGCHLD, CLD_TRAPPED,  "CLD_TRAPPED",  "Traced child has trapped." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   622
    { SIGCHLD, CLD_STOPPED,  "CLD_STOPPED",  "Child has stopped." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   623
    { SIGCHLD, CLD_CONTINUED,"CLD_CONTINUED","Stopped child has continued." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   624
#ifdef SIGPOLL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   625
    { SIGPOLL, POLL_OUT,     "POLL_OUT",     "Output buffers available." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   626
    { SIGPOLL, POLL_MSG,     "POLL_MSG",     "Input message available." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   627
    { SIGPOLL, POLL_ERR,     "POLL_ERR",     "I/O error." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   628
    { SIGPOLL, POLL_PRI,     "POLL_PRI",     "High priority input available." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   629
    { SIGPOLL, POLL_HUP,     "POLL_HUP",     "Device disconnected. [Option End]" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   630
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   631
    { -1, -1, NULL, NULL }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   632
  };
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   633
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   634
  // Codes valid in any signal context.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   635
  const struct {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   636
    int code; const char* s_code; const char* s_desc;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   637
  } t2 [] = {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   638
    { SI_USER,      "SI_USER",     "Signal sent by kill()." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   639
    { SI_QUEUE,     "SI_QUEUE",    "Signal sent by the sigqueue()." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   640
    { SI_TIMER,     "SI_TIMER",    "Signal generated by expiration of a timer set by timer_settime()." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   641
    { SI_ASYNCIO,   "SI_ASYNCIO",  "Signal generated by completion of an asynchronous I/O request." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   642
    { SI_MESGQ,     "SI_MESGQ",    "Signal generated by arrival of a message on an empty message queue." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   643
    // Linux specific
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   644
#ifdef SI_TKILL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   645
    { SI_TKILL,     "SI_TKILL",    "Signal sent by tkill (pthread_kill)" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   646
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   647
#ifdef SI_DETHREAD
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   648
    { SI_DETHREAD,  "SI_DETHREAD", "Signal sent by execve() killing subsidiary threads" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   649
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   650
#ifdef SI_KERNEL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   651
    { SI_KERNEL,    "SI_KERNEL",   "Signal sent by kernel." },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   652
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   653
#ifdef SI_SIGIO
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   654
    { SI_SIGIO,     "SI_SIGIO",    "Signal sent by queued SIGIO" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   655
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   656
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   657
#ifdef AIX
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   658
    { SI_UNDEFINED, "SI_UNDEFINED","siginfo contains partial information" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   659
    { SI_EMPTY,     "SI_EMPTY",    "siginfo contains no useful information" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   660
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   661
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   662
#ifdef __sun
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   663
    { SI_NOINFO,    "SI_NOINFO",   "No signal information" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   664
    { SI_RCTL,      "SI_RCTL",     "kernel generated signal via rctl action" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   665
    { SI_LWP,       "SI_LWP",      "Signal sent via lwp_kill" },
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   666
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   667
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   668
    { -1, NULL, NULL }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   669
  };
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   670
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   671
  const char* s_code = NULL;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   672
  const char* s_desc = NULL;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   673
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   674
  for (int i = 0; t1[i].sig != -1; i ++) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   675
    if (t1[i].sig == si->si_signo && t1[i].code == si->si_code) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   676
      s_code = t1[i].s_code;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   677
      s_desc = t1[i].s_desc;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   678
      break;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   679
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   680
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   681
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   682
  if (s_code == NULL) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   683
    for (int i = 0; t2[i].s_code != NULL; i ++) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   684
      if (t2[i].code == si->si_code) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   685
        s_code = t2[i].s_code;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   686
        s_desc = t2[i].s_desc;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   687
      }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   688
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   689
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   690
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   691
  if (s_code == NULL) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   692
    out->s_name = "unknown";
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   693
    out->s_desc = "unknown";
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   694
    return false;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   695
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   696
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   697
  out->s_name = s_code;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   698
  out->s_desc = s_desc;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   699
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   700
  return true;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   701
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   702
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   703
// A POSIX conform, platform-independend siginfo print routine.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   704
// Short print out on one line.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   705
void os::Posix::print_siginfo_brief(outputStream* os, const siginfo_t* si) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   706
  char buf[20];
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   707
  os->print("siginfo: ");
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   708
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   709
  if (!si) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   710
    os->print("<null>");
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   711
    return;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   712
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   713
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   714
  // See print_siginfo_full() for details.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   715
  const int sig = si->si_signo;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   716
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   717
  os->print("si_signo: %d (%s)", sig, os::Posix::get_signal_name(sig, buf, sizeof(buf)));
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   718
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   719
  enum_sigcode_desc_t ed;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   720
  if (get_signal_code_description(si, &ed)) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   721
    os->print(", si_code: %d (%s)", si->si_code, ed.s_name);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   722
  } else {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   723
    os->print(", si_code: %d (unknown)", si->si_code);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   724
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   725
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   726
  if (si->si_errno) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   727
    os->print(", si_errno: %d", si->si_errno);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   728
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   729
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   730
  const int me = (int) ::getpid();
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   731
  const int pid = (int) si->si_pid;
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   732
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   733
  if (si->si_code == SI_USER || si->si_code == SI_QUEUE) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   734
    if (IS_VALID_PID(pid) && pid != me) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   735
      os->print(", sent from pid: %d (uid: %d)", pid, (int) si->si_uid);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   736
    }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   737
  } else if (sig == SIGSEGV || sig == SIGBUS || sig == SIGILL ||
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   738
             sig == SIGTRAP || sig == SIGFPE) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   739
    os->print(", si_addr: " PTR_FORMAT, si->si_addr);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   740
#ifdef SIGPOLL
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   741
  } else if (sig == SIGPOLL) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   742
    os->print(", si_band: " PTR64_FORMAT, (uint64_t)si->si_band);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   743
#endif
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   744
  } else if (sig == SIGCHLD) {
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   745
    os->print_cr(", si_pid: %d, si_uid: %d, si_status: %d", (int) si->si_pid, si->si_uid, si->si_status);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   746
  }
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   747
}
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   748
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   749
os::WatcherThreadCrashProtection::WatcherThreadCrashProtection() {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   750
  assert(Thread::current()->is_Watcher_thread(), "Must be WatcherThread");
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   751
}
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   752
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   753
/*
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   754
 * See the caveats for this class in os_posix.hpp
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   755
 * Protects the callback call so that SIGSEGV / SIGBUS jumps back into this
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   756
 * method and returns false. If none of the signals are raised, returns true.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   757
 * The callback is supposed to provide the method that should be protected.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   758
 */
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   759
bool os::WatcherThreadCrashProtection::call(os::CrashProtectionCallback& cb) {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   760
  assert(Thread::current()->is_Watcher_thread(), "Only for WatcherThread");
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   761
  assert(!WatcherThread::watcher_thread()->has_crash_protection(),
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   762
      "crash_protection already set?");
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   763
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   764
  if (sigsetjmp(_jmpbuf, 1) == 0) {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   765
    // make sure we can see in the signal handler that we have crash protection
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   766
    // installed
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   767
    WatcherThread::watcher_thread()->set_crash_protection(this);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   768
    cb.call();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   769
    // and clear the crash protection
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   770
    WatcherThread::watcher_thread()->set_crash_protection(NULL);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   771
    return true;
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   772
  }
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   773
  // this happens when we siglongjmp() back
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   774
  WatcherThread::watcher_thread()->set_crash_protection(NULL);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   775
  return false;
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   776
}
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   777
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   778
void os::WatcherThreadCrashProtection::restore() {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   779
  assert(WatcherThread::watcher_thread()->has_crash_protection(),
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   780
      "must have crash protection");
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   781
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   782
  siglongjmp(_jmpbuf, 1);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   783
}
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   784
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   785
void os::WatcherThreadCrashProtection::check_crash_protection(int sig,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   786
    Thread* thread) {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   787
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   788
  if (thread != NULL &&
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   789
      thread->is_Watcher_thread() &&
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   790
      WatcherThread::watcher_thread()->has_crash_protection()) {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   791
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   792
    if (sig == SIGSEGV || sig == SIGBUS) {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   793
      WatcherThread::watcher_thread()->crash_protection()->restore();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   794
    }
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   795
  }
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 17121
diff changeset
   796
}