threadLS_linux_sparc.cpp revision 133
133N/A/*
133N/A * Copyright 1998-2003 Sun Microsystems, Inc. All Rights Reserved.
133N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
133N/A *
133N/A * This code is free software; you can redistribute it and/or modify it
133N/A * under the terms of the GNU General Public License version 2 only, as
133N/A * published by the Free Software Foundation.
133N/A *
133N/A * This code is distributed in the hope that it will be useful, but WITHOUT
133N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
133N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
133N/A * version 2 for more details (a copy is included in the LICENSE file that
133N/A * accompanied this code).
133N/A *
133N/A * You should have received a copy of the GNU General Public License version
133N/A * 2 along with this work; if not, write to the Free Software Foundation,
133N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
133N/A *
133N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
133N/A * CA 95054 USA or visit www.sun.com if you need additional information or
133N/A * have any questions.
133N/A *
133N/A */
133N/A
133N/A#include "incls/_precompiled.incl"
133N/A#include "incls/_threadLS_linux_sparc.cpp.incl"
133N/A
133N/Avoid ThreadLocalStorage::generate_code_for_get_thread() {
133N/A}
133N/A
133N/Avoid ThreadLocalStorage::pd_init() {
133N/A // Nothing to do
133N/A}
133N/A
133N/Avoid ThreadLocalStorage::pd_set_thread(Thread* thread) {
133N/A os::thread_local_storage_at_put(ThreadLocalStorage::thread_index(), thread);
133N/A}