src/share/vm/services/runtimeService.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot-npg Cdiff src/share/vm/services/runtimeService.cpp

src/share/vm/services/runtimeService.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 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) 2003, 2012, 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.
*** 33,42 **** --- 33,43 ---- #ifndef USDT2 HS_DTRACE_PROBE_DECL(hs_private, safepoint__begin); HS_DTRACE_PROBE_DECL(hs_private, safepoint__end); #endif /* !USDT2 */ + #if INCLUDE_MANAGEMENT TimeStamp RuntimeService::_app_timer; TimeStamp RuntimeService::_safepoint_timer; PerfCounter* RuntimeService::_sync_time_ticks = NULL; PerfCounter* RuntimeService::_total_safepoints = NULL; PerfCounter* RuntimeService::_safepoint_time_ticks = NULL;
*** 99,111 **** char capabilities[65]; size_t len = sizeof(capabilities); memset((void*) capabilities, '0', len); capabilities[len-1] = '\0'; capabilities[0] = AttachListener::is_attach_supported() ? '1' : '0'; ! #ifdef KERNEL capabilities[1] = '1'; ! #endif // KERNEL PerfDataManager::create_string_constant(SUN_RT, "jvmCapabilities", capabilities, CHECK); } } --- 100,112 ---- char capabilities[65]; size_t len = sizeof(capabilities); memset((void*) capabilities, '0', len); capabilities[len-1] = '\0'; capabilities[0] = AttachListener::is_attach_supported() ? '1' : '0'; ! #if INCLUDE_SERVICES capabilities[1] = '1'; ! #endif // INCLUDE_SERVICES PerfDataManager::create_string_constant(SUN_RT, "jvmCapabilities", capabilities, CHECK); } }
*** 203,207 **** --- 204,210 ---- void RuntimeService::record_thread_interrupt_signaled_count() { if (UsePerfData) { _thread_interrupt_signaled_count->inc(); } } + + #endif // INCLUDE_MANAGEMENT
src/share/vm/services/runtimeService.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File