This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.Field; | |
import sun.misc.Unsafe; | |
public class crash | |
{ | |
public static void main(String args[])throws Exception | |
{ | |
Field theUnsafeInstance = Unsafe.class.getDeclaredField("theUnsafe"); | |
theUnsafeInstance.setAccessible(true); | |
Unsafe UNSAFE = (Unsafe)theUnsafeInstance.get(Unsafe.class); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# SIGSEGV (0xb) at pc=0x00002aaad642d56d, pid=22148, tid=1098307904 | |
# | |
# JRE version: 7.0 | |
# Java VM: OpenJDK (Taobao) 64-Bit Server VM (23.6-b04-internal mixed mode linux-amd64 compressed oops) | |
# Problematic frame: | |
# C [libDLL.so+0x56d] Java_testdll_set+0x1a | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# SIGSEGV (0xb) at pc=0x00007f943ff492ad, pid=13265, tid=1116805440 | |
# | |
# JRE version: 6.0_32-b05 | |
# Java VM: OpenJDK (Taobao) 64-Bit Server VM (20.0-b12-internal mixed mode linux-amd64 compressed oops) | |
# Problematic frame: | |
# J java.lang.Object.<init>()V | |
# |