mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
Makes HALSetDataSem take a MULTIWAIT_ID rather then a NATIVE_MULTIWAIT_ID
Having the HAL take a NATIVE_MULTIWAIT_ID without any way to get that structure from extern "C" code is a problem. This makes it so it just takes a MULTIWAIT_ID, and then grabs the native handle inside the HAL. Change-Id: I06da18ba34adcea2f16e4e53da672f38be79e28e Signed-off-by: Dustin Spicuzza <dustin@virtualroadside.com>
This commit is contained in:
committed by
Peter Johnson (294)
parent
de39877efb
commit
2f2184e8ce
@@ -402,7 +402,7 @@ JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_communication_FRCNetworkCommun
|
||||
(JNIEnv * env, jclass, jlong id )
|
||||
{
|
||||
NETCOMM_LOG(logDEBUG) << "Mutex Ptr = " << (void*)id;
|
||||
HALSetNewDataSem(((MULTIWAIT_ID)id)->native_handle());
|
||||
HALSetNewDataSem((MULTIWAIT_ID)id);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user