< prev index next >

src/hotspot/os_cpu/linux_sparc/thread_linux_sparc.hpp

Print this page
rev 47415 : Add Thread Local handshakes and thread local polling

*** 1,7 **** /* ! * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 66,76 **** #ifndef _LP64 address o_reg_temps(int i) { return (address)&_o_reg_temps[i]; } #endif ! static int saved_exception_npc_offset_in_bytes() { return offset_of(JavaThread,_saved_exception_npc); } address saved_exception_npc() { return _saved_exception_npc; } void set_saved_exception_npc(address a) { _saved_exception_npc = a; } --- 66,76 ---- #ifndef _LP64 address o_reg_temps(int i) { return (address)&_o_reg_temps[i]; } #endif ! static ByteSize saved_exception_npc_offset() { return byte_offset_of(JavaThread,_saved_exception_npc); } address saved_exception_npc() { return _saved_exception_npc; } void set_saved_exception_npc(address a) { _saved_exception_npc = a; }
< prev index next >