< prev index next >

src/demo/share/jvmti/waiters/waiters.cpp

Print this page
rev 12879 : 8136556: Add the ability to perform static builds of MacOSX x64 binaries
Reviewed-by: ihse, bdelsart, gadams, lfoltan, rriggs, hseigel, twisti

*** 1,7 **** /* ! * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * --- 1,7 ---- /* ! * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: *
*** 241,251 **** } mexit(jvmti, vm_death_lock); } /* Agent_OnLoad() is called first, we prepare for a VM_INIT event here. */ JNIEXPORT jint JNICALL ! Agent_OnLoad(JavaVM *vm, char *options, void *reserved) { jvmtiEnv *jvmti; jint rc; jvmtiError err; jvmtiCapabilities capabilities; --- 241,251 ---- } mexit(jvmti, vm_death_lock); } /* Agent_OnLoad() is called first, we prepare for a VM_INIT event here. */ JNIEXPORT jint JNICALL ! DEF_Agent_OnLoad(JavaVM *vm, char *options, void *reserved) { jvmtiEnv *jvmti; jint rc; jvmtiError err; jvmtiCapabilities capabilities;
*** 286,295 **** return 0; } /* Agent_OnUnload() is called last */ JNIEXPORT void JNICALL ! Agent_OnUnload(JavaVM *vm) { } } /* of extern "C" */ --- 286,295 ---- return 0; } /* Agent_OnUnload() is called last */ JNIEXPORT void JNICALL ! DEF_Agent_OnUnload(JavaVM *vm) { } } /* of extern "C" */
< prev index next >