hotspot/src/os/windows/vm/osThread_windows.hpp
author coleenp
Wed, 31 Mar 2010 16:51:18 -0700
changeset 5237 aab592fd4f44
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6938627: Make temporary directory use property java.io.tmpdir when specified Summary: Get java.io.tmpdir property in os::get_temp_directory() and call this instead of harcoding "/tmp". Don't assume trailing file_separator either. Reviewed-by: dholmes, kamg
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 1997-2001 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
typedef void* HANDLE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  // Win32-specific thread information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  HANDLE _thread_handle;        // Win32 thread handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  unsigned long _thread_id;     // Win32 thread id
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  HANDLE _interrupt_event;      // Event signalled on thread interrupt
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  ThreadState _last_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  // The following will only apply in the Win32 implementation, and should only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // be visible in the concrete class, not this which should be an abstract base class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  HANDLE thread_handle() const                     { return _thread_handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  void set_thread_handle(HANDLE handle)            { _thread_handle = handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  HANDLE interrupt_event() const                   { return _interrupt_event; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  void set_interrupt_event(HANDLE interrupt_event) { _interrupt_event = interrupt_event; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  unsigned long thread_id() const                  { return _thread_id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Used for debugging, return a unique integer for each thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  int thread_identifier() const                    { return _thread_id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // We expect no reposition failures so kill vm if we get one
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  bool valid_reposition_failure() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  void set_thread_id(unsigned long thread_id)      { _thread_id = thread_id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  bool is_try_mutex_enter()                        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // This is a temporary fix for the thread states during
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // suspend/resume until we throw away OSThread completely.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // NEEDS_CLEANUP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void set_last_state(ThreadState state)           { _last_state = state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ThreadState get_last_state()                     { return _last_state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void pd_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void pd_destroy();