11/*
2- * Copyright (c) 2003, 2018 , Oracle and/or its affiliates. All rights reserved.
2+ * Copyright (c) 2003, 2022 , Oracle and/or its affiliates. All rights reserved.
33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44 *
55 * This code is free software; you can redistribute it and/or modify it
3434
3535/*************************************************************/
3636
37+ #include "jvmti_common.h"
38+
3739/* printf format specifier for jlong */
3840#ifdef _WIN32
3941
5254
5355#endif // !_WIN32
5456
55- /**
56- * Additional Java basic types
57- */
58-
59- #ifdef _WIN32
60- typedef unsigned __int64 julong ;
61- #else
62- typedef unsigned long long julong ;
63- #endif
64-
6557/*************************************************************/
6658
6759/**
9486
9587/*************************************************************/
9688
97- extern "C" {
98-
99- /*************************************************************/
100-
10189/**
10290 * If positive, assert status is true; or
10391 * if !positive, assert status is not true.
@@ -127,22 +115,6 @@ int nsk_jni_lverify_void(JNIEnv* jni, const char file[], int line,
127115 */
128116int nsk_jni_check_exception (JNIEnv * jni , const char file [], int line );
129117
130- /**
131- * Convert the digits of the given value argument to a null-terminated
132- * character string and store the result (up to 32 bytes) in string.
133- * If value is negative, the first character of the stored string is
134- * the minus sign (-). The function returns a pointer to the begining
135- * of the result string.
136- */
137- char * jlong_to_string (jlong value , char * string );
138-
139- /**
140- * Convert the digits of the given value argument to a null-terminated
141- * character string and store the result (up to 32 bytes) in string.
142- * The function returns a pointer to the begining of the result string.
143- */
144- char * julong_to_string (julong value , char * string );
145-
146118/**
147119 * Sleep for given number of milliseconds.
148120 */
@@ -163,8 +135,4 @@ void jni_print_vmargs(JavaVMInitArgs vmargs);
163135
164136/*************************************************************/
165137
166- }
167-
168- /*************************************************************/
169-
170138#endif
0 commit comments