hotspot/src/os/windows/vm/jvm_windows.cpp
author ysr
Mon, 09 Feb 2009 12:26:05 -0800
changeset 2012 041fbc6030dd
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function Summary: replaced localtime() with localtime_r() on Solaris and Linux. Reviewed-by: apetrusenko, dholmes, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_jvm_windows.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#include <signal.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
JVM_LEAF(void*, JVM_GetThreadInterruptEvent())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  return Thread::current()->osthread()->interrupt_event();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// sun.misc.Signal ///////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Signal code is mostly copied from classic vm, signals_md.c   1.4 98/08/23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 * This function is included primarily as a debugging aid. If Java is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 * running in a console window, then pressing <CTRL-BREAK> will cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 * the current state of all active threads and monitors to be written
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 * to the console window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Copied from classic vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // signals_md.c       1.4 98/08/23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  void* newHandler = handler == (void *)2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
                   ? os::user_handler()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                   : handler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  switch (sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
   case SIGFPE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
     return (void *)-1; /* already used by VM */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
   case SIGBREAK:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
     if (!ReduceSignalUsage) return (void *)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    /* The following signals are used for Shutdown Hooks support. However, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
       ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
       System.exit(), Java is not allowed to use these signals, and the the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
       user is allowed to set his own _native_ handler for these signals and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
       invoke System.exit() as needed. Terminator.setup() is avoiding
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
       registration of these signals when -Xrs is present. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
   case SHUTDOWN1_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
   case SHUTDOWN2_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
     if (ReduceSignalUsage) return (void*)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void* oldHandler = os::signal(sig, newHandler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (oldHandler == os::user_handler()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      return (void *)2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      return oldHandler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  if (ReduceSignalUsage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,BREAK_SIGNAL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    // to be raised when ReduceSignalUsage is set, since no handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // for them is actually registered in JVM or via JVM_RegisterSignal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
        sig == SIGBREAK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      return JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  os::signal_raise(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  return JNI_TRUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  All the defined signal names for Windows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  NOTE that not all of these names are accepted by FindSignal!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  For various reasons some of these may be rejected at runtime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  Here are the names currently accepted by a user of sun.misc.Signal with
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  1.4.1 (ignoring potential interaction with use of chaining, etc):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
     (LIST TBD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
struct siglabel {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  int   number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
struct siglabel siglabels[] =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  /* derived from version 6.0 VC98/include/signal.h */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  {"ABRT",      SIGABRT,        /* abnormal termination triggered by abort cl */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  "FPE",        SIGFPE,         /* floating point exception */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  "SEGV",       SIGSEGV,        /* segment violation */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  "INT",        SIGINT,         /* interrupt */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  "TERM",       SIGTERM,        /* software term signal from kill */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  "BREAK",      SIGBREAK,       /* Ctrl-Break sequence */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  "ILL",        SIGILL};        /* illegal instruction */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  /* find and return the named signal's number */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  for(int i=0;i<sizeof(siglabels)/sizeof(struct siglabel);i++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    if(!strcmp(name, siglabels[i].name))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      return siglabels[i].number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
JVM_END