SCRIPT Run java package replacements

This commit is contained in:
PJ Reiniger
2025-11-07 19:55:43 -05:00
committed by Peter Johnson
parent 12823a003d
commit f0a3c64121
1590 changed files with 8469 additions and 8469 deletions

View File

@@ -7,19 +7,19 @@
#include <cassert>
#include "HALUtil.h"
#include "edu_wpi_first_hal_ThreadsJNI.h"
#include "org_wpilib_hardware_hal_ThreadsJNI.h"
#include "hal/Threads.h"
using namespace hal;
extern "C" {
/*
* Class: edu_wpi_first_hal_ThreadsJNI
* Class: org_wpilib_hardware_hal_ThreadsJNI
* Method: getCurrentThreadPriority
* Signature: ()I
*/
JNIEXPORT jint JNICALL
Java_edu_wpi_first_hal_ThreadsJNI_getCurrentThreadPriority
Java_org_wpilib_hardware_hal_ThreadsJNI_getCurrentThreadPriority
(JNIEnv* env, jclass)
{
int32_t status = 0;
@@ -30,12 +30,12 @@ Java_edu_wpi_first_hal_ThreadsJNI_getCurrentThreadPriority
}
/*
* Class: edu_wpi_first_hal_ThreadsJNI
* Class: org_wpilib_hardware_hal_ThreadsJNI
* Method: getCurrentThreadIsRealTime
* Signature: ()Z
*/
JNIEXPORT jboolean JNICALL
Java_edu_wpi_first_hal_ThreadsJNI_getCurrentThreadIsRealTime
Java_org_wpilib_hardware_hal_ThreadsJNI_getCurrentThreadIsRealTime
(JNIEnv* env, jclass)
{
int32_t status = 0;
@@ -46,12 +46,12 @@ Java_edu_wpi_first_hal_ThreadsJNI_getCurrentThreadIsRealTime
}
/*
* Class: edu_wpi_first_hal_ThreadsJNI
* Class: org_wpilib_hardware_hal_ThreadsJNI
* Method: setCurrentThreadPriority
* Signature: (ZI)Z
*/
JNIEXPORT jboolean JNICALL
Java_edu_wpi_first_hal_ThreadsJNI_setCurrentThreadPriority
Java_org_wpilib_hardware_hal_ThreadsJNI_setCurrentThreadPriority
(JNIEnv* env, jclass, jboolean realTime, jint priority)
{
int32_t status = 0;