View Single Post
03/21/24, 08:26 PM   #31
DeCaMil
Join Date: Sep 2015
Posts: 1
Cool MAC: Wait for Sonoma 14.4.1 or 14.5 (Ugh)

Apple let some debug code leak into Sonoma 14.4.

If you access memory that is not mapped, you should receive a "Segmentation Violation" or SIGSEGV exception. There is code in the JVM that expects this error, intercepts the SIGSEGV, and loada additional code as needed.

Someone at Apple was testing and changed the SIGSEGV to SIGKILL. SIGSEGV can be intercepted and handled. SIGKILL cannot and immediately stops the process. It was probably changed to test some particular issue.

Unfortunately the SIGKILL was left in place and now accessing unallocated memory kills the process. This breaks the Java JVM running Minion and a number of other java-powered applications.

There is no workaround. We need to wait for Apple to release 14.4.1 or 14.5.
Oh, and Elder Scrolls since Daggerfall.

Source: I've been working with Unix since 1984, java since 1996, Linux since 2001, and Apple since 2012.

Last edited by DeCaMil : 03/21/24 at 08:29 PM.
  Reply With Quote