[hal] Use SIGKILL instead of SIGILL (#6431)

Fix typo.
This commit is contained in:
Peter Johnson
2024-03-11 09:43:33 -07:00
committed by GitHub
parent 3d9152a461
commit 11c60df3e0

View File

@@ -96,7 +96,7 @@ Java_edu_wpi_first_hal_HAL_terminate
(JNIEnv*, jclass)
{
#ifdef __FRC_ROBORIO__
::raise(SIGILL);
::raise(SIGKILL);
#endif
}