Skip to content

Instantly share code, notes, and snippets.

@stefmoon
stefmoon / crash.java
Created April 2, 2013 09:14
一个简单的Java代码bug造成的crash
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);
@stefmoon
stefmoon / hs_err_pid22148.log
Last active December 15, 2015 16:39
一个简单的native代码bug造成的crash
#
# 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
#
@stefmoon
stefmoon / hs_err_pid13265.log
Last active December 11, 2015 12:48
A crash log made by myself to show the bug: http://bugs.sun.com/view_bug.do?bug_id=6964776
#
# 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
#