8325180: Rename jvmti_FollowRefObjects.h

Backport-of: 2d252ee06e
This commit is contained in:
Goetz Lindenmaier
2025-05-15 07:34:08 +00:00
committed by Vitaly Provodin
parent cc07defdd3
commit a12ec1a883
5 changed files with 8 additions and 8 deletions

View File

@@ -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" {

View File

@@ -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" {

View File

@@ -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" {

View File

@@ -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" {

View File

@@ -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 */