mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
committed by
Vitaly Provodin
parent
cc07defdd3
commit
a12ec1a883
@@ -26,7 +26,7 @@
|
||||
#include "agent_common.h"
|
||||
#include "jni_tools.h"
|
||||
#include "jvmti_tools.h"
|
||||
#include "jvmti_FollowRefObjects.h"
|
||||
#include "jvmti_FollowRefObjects.hpp"
|
||||
|
||||
extern "C" {
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#include "agent_common.h"
|
||||
#include "jni_tools.h"
|
||||
#include "jvmti_tools.h"
|
||||
#include "jvmti_FollowRefObjects.h"
|
||||
#include "jvmti_FollowRefObjects.hpp"
|
||||
|
||||
extern "C" {
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#include "agent_common.h"
|
||||
#include "jni_tools.h"
|
||||
#include "jvmti_tools.h"
|
||||
#include "jvmti_FollowRefObjects.h"
|
||||
#include "jvmti_FollowRefObjects.hpp"
|
||||
|
||||
extern "C" {
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#include <jvmti.h>
|
||||
#include "jni_tools.h"
|
||||
#include "jvmti_tools.h"
|
||||
#include "jvmti_FollowRefObjects.h"
|
||||
#include "jvmti_FollowRefObjects.hpp"
|
||||
|
||||
extern "C" {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2006, 2024, 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
|
||||
@@ -20,8 +20,8 @@
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
#ifndef __FollowRefObject_h
|
||||
#define __FollowRefObject_h
|
||||
#ifndef __FollowRefObject_hpp
|
||||
#define __FollowRefObject_hpp
|
||||
|
||||
#include <jvmti.h>
|
||||
|
||||
@@ -34,7 +34,7 @@ void jvmti_FollowRefObject_init();
|
||||
/* ============================================================================= */
|
||||
|
||||
#define DBG(x) x
|
||||
#define DEREF(ptr) (((ptr) == NULL ? 0 : *(ptr)))
|
||||
#define DEREF(ptr) (((ptr) == nullptr ? 0 : *(ptr)))
|
||||
|
||||
extern jvmtiHeapCallbacks g_wrongHeapCallbacks; /* Callbacks that blame */
|
||||
|
||||
Reference in New Issue
Block a user