08-20-2015, 11:47 AM
Доброе время суток! При работе или запуске сборки появляются краши явы.
ОС: Windows Server 2008 R2 x64 Ent
Процессор: AMD FX-4100 Quad-COre 3.6 GHz
Оперативка: 8Гб
Java: Jdk 7_21 x64 (Изначально jre стояло)
Обновлений драйверов нету, кроме драйверов на сетевую карту.
Обновления системы установлены все.
java и javaw были запущены от админа, не помогало.
DEP только для основных программ и служб.
Диагностика жесткого диска Victoria не дал только 9 зеленых сектаров.
Диагностика оперативки встроенными средствами винды не выявила ошибок.
Перестановка явы не дала результатов.
Ошибка актуальна и для логина, но он падал только пару раз.
Сегодня появился лаг, при загрузке игровой сервер зависает, сжирает всю оперативку и ява падает. После перезагрузки проблема исчезает, но через нескольких перезапусков сервера снова появляется.
[SPOILER="3"]#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000072a1f258, pid=2580, tid=1832
#
# JRE version: 7.0_21-b11
# Java VM: Java HotSpot 64-Bit Server VM (23.21-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V [jvm.dll+0x5f258]
#
# Core dump written. Default location: C:\Epilogue\gameserver\hs_err_pid2580.mdmp
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x000000000ed4a000): JavaThread "C2 CompilerThread0" daemon [_thread_in_vm, id=1832, stack(0x000000000f880000,0x000000000f980000)]
siginfo: ExceptionCode=0xc0000005, reading address 0xffffffffffffffff
Registers:
RAX=0xffffffffffffffff, RBX=0x0800000000000000, RCX=0x0000000072bda0fc, RDX=0x0000000000000048
RSP=0x000000000f97df90, RBP=0x000000000000f000, RSI=0x0000000000000001, RDI=0x0000000002bd833a
R8 =0x000000000f97df01, R9 =0x00000000729c0000, R10=0x0000000000000000, R11=0x0000000002bd7ae3
R12=0x0000000072ec2a68, R13=0x0000000000000000, R14=0x0000000000001000, R15=0x0000000000000000
RIP=0x0000000072a1f258, EFLAGS=0x0000000000010213
Top of Stack: (sp=0x000000000f97df90)
0x000000000f97df90: 0000000000000...
ОС: Windows Server 2008 R2 x64 Ent
Процессор: AMD FX-4100 Quad-COre 3.6 GHz
Оперативка: 8Гб
Java: Jdk 7_21 x64 (Изначально jre стояло)
Обновлений драйверов нету, кроме драйверов на сетевую карту.
Обновления системы установлены все.
java и javaw были запущены от админа, не помогало.
DEP только для основных программ и служб.
Диагностика жесткого диска Victoria не дал только 9 зеленых сектаров.
Диагностика оперативки встроенными средствами винды не выявила ошибок.
Перестановка явы не дала результатов.
Ошибка актуальна и для логина, но он падал только пару раз.
Сегодня появился лаг, при загрузке игровой сервер зависает, сжирает всю оперативку и ява падает. После перезагрузки проблема исчезает, но через нескольких перезапусков сервера снова появляется.
Батник запуска
@echo off
REM одинаковый размер памяти для Xms и Xmx, JVM пытается удержать размер heap'а минимальным, и если его нужно меньше, чем в Xmx - гоняет GC понапрасну
SET java_opts=%java_opts% -Xms3072m
SET java_opts=%java_opts% -Xmx3072m
REM Альтернативные настройки самой JVM.
SET java_opts=%java_opts% -XX:+DoEscapeAnalysis
REM Циклы заполнения/копирования массивов заменяются на прямые машинные инструкции для ускорения работы.
SET java_opts=%java_opts% -XX:+OptimizeFill
REM Опция, устраняет лишние блокировки путем их объединения.
SET java_opts=%java_opts% -XX:+EliminateLocks
REM Позволяет расширить диапазон кешируемых значений для целых типов при старте виртуальной машины.
SET java_opts=%java_opts% -XX:AutoBoxCacheMax=65536
SET java_opts=%java_opts% -XX:+CMSClassUnloadingEnabled
SET java_opts=%java_opts% -XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses
SET java_settings=%java_settings% -Dfile.encoding=UTF-8
SET java_settings=%java_settings% -Djava.net.preferIPv4Stack=true
java -Xbootclasspath/p:./jsr167.jar -server %java_settings% %java_opts% -cp config;../lib/* l2p.gameserver.GameServer
REM Debug ...
REM java -Dfile.encoding=UTF-8 -cp config;./* -Xmx1G -Xnoclassgc -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=7456 l2p.gameserver.GameServer
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Server restarted ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly ...
echo.
:end
echo.
echo Server terminated ...
echo.
pause
REM одинаковый размер памяти для Xms и Xmx, JVM пытается удержать размер heap'а минимальным, и если его нужно меньше, чем в Xmx - гоняет GC понапрасну
SET java_opts=%java_opts% -Xms3072m
SET java_opts=%java_opts% -Xmx3072m
REM Альтернативные настройки самой JVM.
SET java_opts=%java_opts% -XX:+DoEscapeAnalysis
REM Циклы заполнения/копирования массивов заменяются на прямые машинные инструкции для ускорения работы.
SET java_opts=%java_opts% -XX:+OptimizeFill
REM Опция, устраняет лишние блокировки путем их объединения.
SET java_opts=%java_opts% -XX:+EliminateLocks
REM Позволяет расширить диапазон кешируемых значений для целых типов при старте виртуальной машины.
SET java_opts=%java_opts% -XX:AutoBoxCacheMax=65536
SET java_opts=%java_opts% -XX:+CMSClassUnloadingEnabled
SET java_opts=%java_opts% -XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses
SET java_settings=%java_settings% -Dfile.encoding=UTF-8
SET java_settings=%java_settings% -Djava.net.preferIPv4Stack=true
java -Xbootclasspath/p:./jsr167.jar -server %java_settings% %java_opts% -cp config;../lib/* l2p.gameserver.GameServer
REM Debug ...
REM java -Dfile.encoding=UTF-8 -cp config;./* -Xmx1G -Xnoclassgc -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=7456 l2p.gameserver.GameServer
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Server restarted ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly ...
echo.
:end
echo.
echo Server terminated ...
echo.
pause
Батник 2
@echo off
REM set PATH="type here your path to java jdk/jre (including bin folder)"
REM Default parameters for a basic server.
REM ======== Optimize memory settings =======
REM Minimal size with geodata is 1.5G, w/o geo 1G
REM Make sure -Xmn value is always 1/4 the size of -Xms and -Xmx.
REM -Xms<size> set initial Java heap size
REM -Xmx<size> set maximum Java heap size
REM -Xmn<size> Size of young generation
REM ===============================
REM Set heap min/max to same size for consistent results
REM одинаковый размер памяти для Xms и Xmx, JVM пытается удержать размер heap'а минимальным, и если его нужно меньше, чем в Xmx - гоняет GC понапрасну
SET java_opts=%java_opts% -Xms2048m
SET java_opts=%java_opts% -Xmx2048m
REM Garbage collector/Performance Options
SET java_opts=%java_opts% -XX:+UseConcMarkSweepGC
SET java_opts=%java_opts% -XX:+UseParNewGC
SET java_opts=%java_opts% -XX:MaxGCPauseMillis=500
SET java_opts=%java_opts% -XX:+DoEscapeAnalysis
SET java_opts=%java_opts% -XX:+UseBiasedLocking
SET java_opts=%java_opts% -XX:+EliminateLocks
REM SET java_opts=%java_opts% -XX:CMSIncrementalSafetyFactor=50
REM Number of garbage collector threads for the parallel young generation collections and for the parallel parts of the old generation collections
SET java_opts=%java_opts% -XXarallelGCThreads=10
SET java_opts=%java_opts% -XXarallelCMSThreads=5
SET java_opts=%java_opts% -XX:+AggressiveOpts
REM Default size of new generation
REM SET java_opts=%java_opts% -XX:NewSize=512m
REM SET java_opts=%java_opts% -XX:MaxNewSize=1024m
REM instructs the VM to set a 2:1 ratio between young and tenured generations (Ratio of new/old generation sizes)
REM SET java_opts=%java_opts% -XX:NewRatio=2
REM Sets survivor space ratio to 1:8, resulting in larger survivor spaces (the smaller the ratio, the larger the space). Larger survivor spaces allow short lived objects a longer time period to die in the young generation
REM SET java_opts=%java_opts% -XX:SurvivorRatio=8
REM Allows 80% of the survivor spaces to be occupied instead of the default 50%, allowing better utilization of the survivor space memory.
REM SET java_opts=%java_opts% -XX:TargetSurvivorRatio=50
REM SET java_opts=%java_opts% -XX:MaxTenuringThreshold=5
SET java_opts=%java_opts% -XX:+UseCMSInitiatingOccupancyOnly
SET java_opts=%java_opts% -XX:CMSInitiatingOccupancyFraction=80
REM SET java_opts=%java_opts% -XX:+CMSParallelRemarkEnabled
SET java_opts=%java_opts% -XX:+CMSClassUnloadingEnabled
REM The important setting in 64-bits with the Sun JVM is -XX:+UseCompressedOops as it saves memory and improves performance
SET java_opts=%java_opts% -XX:+UseCompressedOops
SET java_opts=%java_opts% -XX:+UseFastAccessorMethods
REM Logging
REM SET java_opts=%java_opts% -XX:+PrintGCDetails
REM SET java_opts=%java_opts% -XX:+PrintGCDateStamps
REM SET java_opts=%java_opts% -XX:+PrintGCApplicationStoppedTime
REM SET java_opts=%java_opts% -XX:+PrintGCTimeStamps
REM SET java_opts=%java_opts% -XX:+PrintGC
REM SET java_opts=%java_opts% -Xloggc:./log/game/garbage_collector.log
SET java_settings=%java_settings% -Dfile.encoding=UTF-8
SET java_settings=%java_settings% -Djava.net.preferIPv4Stack=true
java -Xbootclasspath/p:./jsr167.jar -server %java_settings% %java_opts% -cp config;../lib/* l2p.gameserver.GameServer
REM Debug ...
REM java -Dfile.encoding=UTF-8 -cp config;./* -Xmx1G -Xnoclassgc -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=7456 l2p.gameserver.GameServer
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Server restarted ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly ...
echo.
:end
echo.
echo Server terminated ...
echo.
pause
REM set PATH="type here your path to java jdk/jre (including bin folder)"
REM Default parameters for a basic server.
REM ======== Optimize memory settings =======
REM Minimal size with geodata is 1.5G, w/o geo 1G
REM Make sure -Xmn value is always 1/4 the size of -Xms and -Xmx.
REM -Xms<size> set initial Java heap size
REM -Xmx<size> set maximum Java heap size
REM -Xmn<size> Size of young generation
REM ===============================
REM Set heap min/max to same size for consistent results
REM одинаковый размер памяти для Xms и Xmx, JVM пытается удержать размер heap'а минимальным, и если его нужно меньше, чем в Xmx - гоняет GC понапрасну
SET java_opts=%java_opts% -Xms2048m
SET java_opts=%java_opts% -Xmx2048m
REM Garbage collector/Performance Options
SET java_opts=%java_opts% -XX:+UseConcMarkSweepGC
SET java_opts=%java_opts% -XX:+UseParNewGC
SET java_opts=%java_opts% -XX:MaxGCPauseMillis=500
SET java_opts=%java_opts% -XX:+DoEscapeAnalysis
SET java_opts=%java_opts% -XX:+UseBiasedLocking
SET java_opts=%java_opts% -XX:+EliminateLocks
REM SET java_opts=%java_opts% -XX:CMSIncrementalSafetyFactor=50
REM Number of garbage collector threads for the parallel young generation collections and for the parallel parts of the old generation collections
SET java_opts=%java_opts% -XXarallelGCThreads=10
SET java_opts=%java_opts% -XXarallelCMSThreads=5
SET java_opts=%java_opts% -XX:+AggressiveOpts
REM Default size of new generation
REM SET java_opts=%java_opts% -XX:NewSize=512m
REM SET java_opts=%java_opts% -XX:MaxNewSize=1024m
REM instructs the VM to set a 2:1 ratio between young and tenured generations (Ratio of new/old generation sizes)
REM SET java_opts=%java_opts% -XX:NewRatio=2
REM Sets survivor space ratio to 1:8, resulting in larger survivor spaces (the smaller the ratio, the larger the space). Larger survivor spaces allow short lived objects a longer time period to die in the young generation
REM SET java_opts=%java_opts% -XX:SurvivorRatio=8
REM Allows 80% of the survivor spaces to be occupied instead of the default 50%, allowing better utilization of the survivor space memory.
REM SET java_opts=%java_opts% -XX:TargetSurvivorRatio=50
REM SET java_opts=%java_opts% -XX:MaxTenuringThreshold=5
SET java_opts=%java_opts% -XX:+UseCMSInitiatingOccupancyOnly
SET java_opts=%java_opts% -XX:CMSInitiatingOccupancyFraction=80
REM SET java_opts=%java_opts% -XX:+CMSParallelRemarkEnabled
SET java_opts=%java_opts% -XX:+CMSClassUnloadingEnabled
REM The important setting in 64-bits with the Sun JVM is -XX:+UseCompressedOops as it saves memory and improves performance
SET java_opts=%java_opts% -XX:+UseCompressedOops
SET java_opts=%java_opts% -XX:+UseFastAccessorMethods
REM Logging
REM SET java_opts=%java_opts% -XX:+PrintGCDetails
REM SET java_opts=%java_opts% -XX:+PrintGCDateStamps
REM SET java_opts=%java_opts% -XX:+PrintGCApplicationStoppedTime
REM SET java_opts=%java_opts% -XX:+PrintGCTimeStamps
REM SET java_opts=%java_opts% -XX:+PrintGC
REM SET java_opts=%java_opts% -Xloggc:./log/game/garbage_collector.log
SET java_settings=%java_settings% -Dfile.encoding=UTF-8
SET java_settings=%java_settings% -Djava.net.preferIPv4Stack=true
java -Xbootclasspath/p:./jsr167.jar -server %java_settings% %java_opts% -cp config;../lib/* l2p.gameserver.GameServer
REM Debug ...
REM java -Dfile.encoding=UTF-8 -cp config;./* -Xmx1G -Xnoclassgc -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=7456 l2p.gameserver.GameServer
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Server restarted ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly ...
echo.
:end
echo.
echo Server terminated ...
echo.
pause
1
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ILLEGAL_INSTRUCTION (0xc000001d) at pc=0x0000000002b426cb, pid=2816, tid=4644
#
# JRE version: 7.0_21-b11
# Java VM: Java HotSpot 64-Bit Server VM (23.21-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# J l2p.gameserver.model.Creature.isInZone(Ll2p/gameserver/model/Zone$ZoneTypeZ
#
# Core dump written. Default location: [thread 4664 also had an error]
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x000000000f2b7000): JavaThread "ScheduledThreadPool-5" [_thread_in_Java, id=4644, stack(0x0000000041c10000,0x0000000041d10000)]
siginfo: ExceptionCode=0xc000001d
Registers:
RAX=0x0000000000000000, RBX=0x00000007c478c7a0, RCX=0x0000000000010000, RDX=0x00000007c478b6f0
RSP=0x0000000041d0f360, RBP=0x00000007c478b6f0, RSI=0x0000000002bd0000, RDI=0x0000000002496374
R8 =0x0000000794f28f10, R9 =0x00000000f88f18f4, R10=0x0000000000000000, R11=0x0000000000000000
R12=0x0000000000000000, R13=0x00000000028f37cc, R14=0x0000000041d0f3e0, R15=0x000000000f2b7000
RIP=0x0000000002b426cb, EFLAGS=0x0000000000010206
Top of Stack: (sp=0x0000000041d0f360)
0x0000000041d0f360: 00000007c478c7e8 0000000792820af0
0x0000000041d0f370: 00000007d8dfbdc2 0000000041d0f3e0
0x0000000041d0f380: 00000007c478b6f0 00000007d9c12380
0x0000000041d0f390: 00000007d8dfbe20 0000000000000000
0x0000000041d0f3a0: 00000007c478b6f0 0000000002b33844
0x0000000041d0f3b0: 0000000000000032 00000007c478b6f0
0x0000000041d0f3c0: 0000000000000000 0000000000000000
0x0000000041d0f3d0: 000000073d6ebcb0 0000000792820af0
0x0000000041d0f3e0: 00000007c478b6f0 00000000028f3814
0x0000000041d0f3f0: 0000000002bd0000 0000000002922e7a
0x0000000041d0f400: 00000007631fc3c0 000000079c5696d8
0x0000000041d0f410: 00000000f88f1850 0000000002b07810
0x0000000041d0f420: 00000000000007d7 000000073abbe110
0x0000000041d0f430: 00000007627421a8 f542b9ca000003eb
0x0000000041d0f440: 00000007c7045c60 0000000002a7f898
0x0000000041d0f450: 000000000000120a 0000000794f28f10
Instructions: (pc=0x0000000002b426cb)
0x0000000002b426ab: d2 0f 85 98 04 00 00 4b 8d 1c cc 41 81 fb ff ff
0x0000000002b426bb: 00 00 0f 8d ba 04 00 00 8b c8 81 c1 00 00 01 00
0x0000000002b426cb: f0 43 1f b1 4c cc 10 0f 94 c1 0f b6 c9 85 c9 0f
0x0000000002b426db: 84 9d 04 00 00 45 85 db 0f 85 78 03 00 00 43 c7
Register to memory mapping:
RAX=0x0000000000000000 is an unknown value
RBX=0x00000007c478c7a0 is an oop
java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync
- klass: 'java/util/concurrent/locks/ReentrantReadWriteLock$NonfairSync'
RCX=0x0000000000010000 is an unknown value
RDX=0x00000007c478b6f0 is an oop
npc.model.residences.fortress.peace.SuspiciousMerchantInstance
- klass: 'npc/model/residences/fortress/peace/SuspiciousMerchantInstance'
RSP=0x0000000041d0f360 is pointing into the stack for thread: 0x000000000f2b7000
RBP=0x00000007c478b6f0 is an oop
npc.model.residences.fortress.peace.SuspiciousMerchantInstance
- klass: 'npc/model/residences/fortress/peace/SuspiciousMerchantInstance'
RSI=0x0000000002bd0000 is an unknown value
RDI=0x0000000002496374 is an Interpreter codelet
return entry points [0x0000000002495820, 0x0000000002497620] 7680 bytes
R8 =0x0000000794f28f10 is an oop
java.lang.Thread
- klass: 'java/lang/Thread'
R9 =0x00000000f88f18f4 is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x0000000000000000 is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x00000000028f3610 [CodeBlob (0x00000000028f3610)]
Framesize: 6
R14=0x0000000041d0f3e0 is pointing into the stack for thread: 0x000000000f2b7000
R15=0x000000000f2b7000 is a thread
Stack: [0x0000000041c10000,0x0000000041d10000], sp=0x0000000041d0f360, free space=1020k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
J l2p.gameserver.model.Creature.isInZone(Ll2p/gameserver/model/Zone$ZoneTypeZ
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x0000000011eba800 JavaThread "HikariCP connection filler" daemon [_thread_blocked, id=5104, stack(0x0000000045550000,0x0000000045650000)]
0x0000000011eb8000 JavaThread "DestroyJavaVM" [_thread_blocked, id=3020, stack(0x0000000002390000,0x0000000002490000)]
0x0000000011704000 JavaThread "Thread-36" [_thread_in_native, id=4744, stack(0x0000000045430000,0x0000000045530000)]
0x0000000011703000 JavaThread "SelectorThread:7777" [_thread_blocked, id=4740, stack(0x0000000044fc0000,0x00000000450c0000)]
0x0000000011702800 JavaThread "ShutdownCounter" daemon [_thread_blocked, id=4736, stack(0x0000000045300000,0x0000000045400000)]
0x0000000011701800 JavaThread "Thread-32" [_thread_blocked, id=4732, stack(0x00000000450e0000,0x00000000451e0000)]
0x0000000011700000 JavaThread "ThreadPoolExecutor-8" [_thread_in_Java, id=4724, stack(0x0000000044820000,0x0000000044920000)]
0x00000000116ff800 JavaThread "ThreadPoolExecutor-7" [_thread_blocked, id=4720, stack(0x0000000044ec0000,0x0000000044fc0000)]
0x00000000116fe800 JavaThread "ThreadPoolExecutor-6" [_thread_in_Java, id=4716, stack(0x0000000044dc0000,0x0000000044ec0000)]
0x00000000116fe000 JavaThread "ThreadPoolExecutor-5" [_thread_blocked, id=4712, stack(0x0000000044c60000,0x0000000044d60000)]
0x00000000116fd000 JavaThread "ThreadPoolExecutor-4" [_thread_blocked, id=4708, stack(0x0000000044b60000,0x0000000044c60000)]
0x00000000116fc800 JavaThread "ThreadPoolExecutor-3" [_thread_blocked, id=4704, stack(0x0000000044980000,0x0000000044a80000)]
0x00000000116fb800 JavaThread "ThreadPoolExecutor-2" [_thread_blocked, id=4700, stack(0x00000000446f0000,0x00000000447f0000)]
0x00000000116fb000 JavaThread "ThreadPoolExecutor-1" [_thread_blocked, id=4696, stack(0x0000000043ee0000,0x0000000043fe0000)]
0x00000000116fa000 JavaThread "ScheduledThreadPool-16" [_thread_in_Java, id=4688, stack(0x00000000445c0000,0x00000000446c0000)]
0x00000000116f9800 JavaThread "ScheduledThreadPool-15" [_thread_in_Java, id=4684, stack(0x0000000044460000,0x0000000044560000)]
0x00000000116f8800 JavaThread "ScheduledThreadPool-14" [_thread_in_Java, id=4680, stack(0x00000000442c0000,0x00000000443c0000)]
0x00000000116f8000 JavaThread "ScheduledThreadPool-13" [_thread_in_Java, id=4676, stack(0x00000000440c0000,0x00000000441c0000)]
0x00000000116f7000 JavaThread "ScheduledThreadPool-12" [_thread_in_Java, id=4672, stack(0x0000000041a50000,0x0000000041b50000)]
0x00000000116f6800 JavaThread "ScheduledThreadPool-11" [_thread_in_Java, id=4668, stack(0x0000000043de0000,0x0000000043ee0000)]
0x00000000116f5800 JavaThread "ScheduledThreadPool-10" [_thread_in_Java, id=4664, stack(0x0000000043cb0000,0x0000000043db0000)]
0x000000000f2b9800 JavaThread "ScheduledThreadPool-9" [_thread_in_Java, id=4660, stack(0x0000000041950000,0x0000000041a50000)]
0x000000000f2b8800 JavaThread "ScheduledThreadPool-8" [_thread_in_Java, id=4656, stack(0x0000000041850000,0x0000000041950000)]
0x000000000f2b8000 JavaThread "ScheduledThreadPool-7" [_thread_in_Java, id=4652, stack(0x0000000041300000,0x0000000041400000)]
0x000000000f2b6800 JavaThread "ScheduledThreadPool-6" [_thread_in_Java, id=4648, stack(0x00000000416d0000,0x00000000417d0000)]
=>0x000000000f2b7000 JavaThread "ScheduledThreadPool-5" [_thread_in_Java, id=4644, stack(0x0000000041c10000,0x0000000041d10000)]
0x000000000f2b5800 JavaThread "ScheduledThreadPool-4" [_thread_in_Java, id=4620, stack(0x0000000041560000,0x0000000041660000)]
0x000000000f2b5000 JavaThread "ScheduledThreadPool-3" [_thread_in_Java, id=4616, stack(0x0000000041440000,0x0000000041540000)]
0x000000000f2b4000 JavaThread "net.sf.ehcache.CacheManager@165cef0c" daemon [_thread_blocked, id=3128, stack(0x00000000149c0000,0x0000000014ac0000)]
0x000000000f2b3800 JavaThread "ScheduledThreadPool-2" [_thread_in_Java, id=1604, stack(0x00000000148a0000,0x00000000149a0000)]
0x000000000f2b2800 JavaThread "ScheduledThreadPool-1" [_thread_in_Java, id=2452, stack(0x0000000014720000,0x0000000014820000)]
0x000000001220a800 JavaThread "Hikari Housekeeping Timer (pool HikariPool-0)" daemon [_thread_blocked, id=2636, stack(0x0000000013d10000,0x0000000013e10000)]
0x000000000f268000 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=2400, stack(0x00000000102e0000,0x00000000103e0000)]
0x000000000f0f5000 JavaThread "AsyncAppender-Dispatcher-Thread-4" daemon [_thread_blocked, id=628, stack(0x0000000010850000,0x0000000010950000)]
0x000000000efa9800 JavaThread "AsyncAppender-Dispatcher-Thread-3" daemon [_thread_blocked, id=2628, stack(0x00000000106a0000,0x00000000107a0000)]
0x000000000ef4e000 JavaThread "AsyncAppender-Dispatcher-Thread-2" daemon [_thread_blocked, id=1476, stack(0x0000000010590000,0x0000000010690000)]
0x000000000f0c8800 JavaThread "AsyncAppender-Dispatcher-Thread-1" daemon [_thread_blocked, id=2376, stack(0x00000000103f0000,0x00000000104f0000)]
0x000000000eed1000 JavaThread "AsyncAppender-Dispatcher-Thread-0" daemon [_thread_blocked, id=1416, stack(0x000000000f8b0000,0x000000000f9b0000)]
0x000000000ed28800 JavaThread "Service Thread" daemon [_thread_blocked, id=3004, stack(0x000000000fd00000,0x000000000fe00000)]
0x000000000ed0f800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=2860, stack(0x000000000fbf0000,0x000000000fcf0000)]
0x000000000ed09800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=2864, stack(0x000000000faf0000,0x000000000fbf0000)]
0x000000000ed08800 JavaThread "Attach Listener" daemon [_thread_blocked, id=2876, stack(0x000000000f9d0000,0x000000000fad0000)]
0x000000000ed08000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2888, stack(0x000000000f790000,0x000000000f890000)]
0x000000000ed07000 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=2880, stack(0x000000000f5b0000,0x000000000f6b0000)]
0x000000000e927800 JavaThread "Finalizer" daemon [_thread_blocked, id=3056, stack(0x000000000eba0000,0x000000000eca0000)]
0x000000000e91d000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3060, stack(0x000000000e990000,0x000000000ea90000)]
Other Threads:
0x000000000e915000 VMThread [stack: 0x000000000e2a0000,0x000000000e3a0000] [id=3000]
0x000000000ed2c000 WatcherThread [stack: 0x000000000f4a0000,0x000000000f5a0000] [id=1420]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
par new generation total 766784K, used 617766K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 90% used [0x0000000718000000, 0x000000073db49a30, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2108315K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38003K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Card table byte_map: [0x0000000006490000,0x0000000006be0000] byte_map_base: 0x0000000002bd0000
Polling page: 0x0000000000230000
Code Cache [0x0000000002490000, 0x0000000002b90000, 0x0000000005490000)
total_blobs=2649 nmethods=2137 adapters=459 free_code_cache=42160Kb largest_free_block=42993600
Compilation events (10 events):
Event: 1704.115 Thread 0x000000000ed0f800 2381 java.nio.Bits:hort0 (3 bytes)
Event: 1704.115 Thread 0x000000000ed0f800 nmethod 2381 0x00000000026a04d0 code [0x00000000026a0600, 0x00000000026a0638]
Event: 1704.115 Thread 0x000000000ed0f800 2382 java.nio.Bits:hort1 (6 bytes)
Event: 1704.115 Thread 0x000000000ed0f800 nmethod 2382 0x00000000026a6450 code [0x00000000026a6580, 0x00000000026a65b8]
Event: 1707.206 Thread 0x000000000ed0f800 2383 l2p.commons.net.nio.SendablePacket::writeH (11 bytes)
Event: 1707.208 Thread 0x000000000ed0f800 nmethod 2383 0x00000000028f3b90 code [0x00000000028f3ce0, 0x00000000028f3e88]
Event: 1714.082 Thread 0x000000000ed09800 2384 l2p.gameserver.data.xml.holder.SkillAcquireHolder::getAvaliableList (147 bytes)
Event: 1714.092 Thread 0x000000000ed09800 nmethod 2384 0x0000000002924ad0 code [0x0000000002924ca0, 0x0000000002925478]
Event: 1746.909 Thread 0x000000000ed0f800 2385 ! l2p.gameserver.model.Creature::isInZone (90 bytes)
Event: 1746.922 Thread 0x000000000ed0f800 nmethod 2385 0x0000000002b42410 code [0x0000000002b42600, 0x0000000002b42e70]
GC Heap History (10 events):
Event: 36.576 GC heap before
{Heap before GC invocations=4 (full 2):
par new generation total 766784K, used 736227K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 64% used [0x00000007419a0000, 0x0000000744ef8e18, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1119656K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 26473K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 36.846 GC heap after
Heap after GC invocations=5 (full 2):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1168063K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 26473K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 45.490 GC heap before
{Heap before GC invocations=5 (full 2):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1167940K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28107K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 45.683 GC heap after
Heap after GC invocations=6 (full 2):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1257163K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28107K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 54.067 GC heap before
{Heap before GC invocations=6 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1257163K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30087K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 54.458 GC heap after
Heap after GC invocations=7 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1369686K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30087K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 58.147 GC heap before
{Heap before GC invocations=7 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1369637K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31337K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 59.385 GC heap after
Heap after GC invocations=8 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1888541K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31337K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 663.402 GC heap before
{Heap before GC invocations=8 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1886899K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 36791K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 668.174 GC heap after
Heap after GC invocations=9 (full 4):
par new generation total 766784K, used 0K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2114200K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 36766K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Deoptimization events (10 events):
Event: 1502.170 Thread 0x00000000116fc800 Uncommon trap -42 fr.pc 0x0000000002b680ec
Event: 1520.538 Thread 0x00000000116fe800 Uncommon trap -75 fr.pc 0x0000000002a10488
Event: 1599.816 Thread 0x00000000116fb800 Uncommon trap -83 fr.pc 0x0000000002b36af8
Event: 1599.816 Thread 0x00000000116fb800 Uncommon trap -83 fr.pc 0x0000000002b27e44
Event: 1631.218 Thread 0x00000000116f8000 Uncommon trap -12 fr.pc 0x0000000002b84d70
Event: 1688.435 Thread 0x00000000116ff800 Uncommon trap -83 fr.pc 0x00000000026989a4
Event: 1740.652 Thread 0x00000000116fc800 Uncommon trap -20 fr.pc 0x0000000002a0c9cc
Event: 1740.652 Thread 0x00000000116fb800 Uncommon trap -20 fr.pc 0x0000000002633cd8
Event: 1740.654 Thread 0x00000000116fd000 Uncommon trap -20 fr.pc 0x000000000263488c
Event: 1741.651 Thread 0x0000000011700000 Uncommon trap -20 fr.pc 0x00000000026318e0
Internal exceptions (10 events):
Event: 1640.794 Thread 0x00000000116fd000 Threw 0x000000073815c878 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1717.985 Thread 0x00000000116fb800 Threw 0x000000073b10e8f0 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.645 Thread 0x0000000011703000 Threw 0x000000073cd7f148 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.646 Thread 0x0000000011703000 Threw 0x000000073cd8a438 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.647 Thread 0x0000000011700000 Threw 0x0000000738d927f8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.647 Thread 0x0000000011700000 Threw 0x000000073cff2ef8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.648 Thread 0x0000000011700000 Threw 0x000000073cff8798 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.678 Thread 0x00000000116fb800 Threw 0x000000073b130578 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1740.789 Thread 0x00000000116fb800 Threw 0x000000073d3a93f8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1740.789 Thread 0x00000000116f6800 Threw 0x000000073cccea20 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Events (10 events):
Event: 1740.789 loading class 0x0000000011350560
Event: 1740.789 loading class 0x0000000011350560 done
Event: 1740.789 loading class 0x0000000011e00ec0
Event: 1740.789 loading class 0x0000000011e00ec0 done
Event: 1741.651 Thread 0x0000000011700000 DEOPT PACKING pc=0x00000000026318e0 sp=0x000000004491eb00
Event: 1741.651 Thread 0x0000000011700000 DEOPT UNPACKING pc=0x00000000024c9164 sp=0x000000004491ea90 mode 2
Event: 1741.806 Thread 0x0000000011eba800 Thread added: 0x0000000011eba800
Event: 1743.806 Executing VM operation: RevokeBias
Event: 1743.807 Executing VM operation: RevokeBias done
Event: 1743.807 Thread 0x0000000011eba800 Thread exited: 0x0000000011eba800
Dynamic libraries:
0x000000013fb10000 - 0x000000013fb43000 C:\Windows\system32\java.exe
0x0000000076ec0000 - 0x0000000077069000 C:\Windows\SYSTEM32\ntdll.dll
0x0000000076ca0000 - 0x0000000076dbf000 C:\Windows\system32\kernel32.dll
0x000007fefce30000 - 0x000007fefce9c000 C:\Windows\system32\KERNELBASE.dll
0x000007fefd120000 - 0x000007fefd1fb000 C:\Windows\system32\ADVAPI32.dll
0x000007fefd030000 - 0x000007fefd0cf000 C:\Windows\system32\msvcrt.dll
0x000007fefd930000 - 0x000007fefd94f000 C:\Windows\SYSTEM32\sechost.dll
0x000007fefeb90000 - 0x000007fefecbd000 C:\Windows\system32\RPCRT4.dll
0x0000000076dc0000 - 0x0000000076eba000 C:\Windows\system32\USER32.dll
0x000007fefe8c0000 - 0x000007fefe927000 C:\Windows\system32\GDI32.dll
0x000007fefd0d0000 - 0x000007fefd0de000 C:\Windows\system32\LPK.dll
0x000007fefe930000 - 0x000007fefe9f9000 C:\Windows\system32\USP10.dll
0x000007fefb670000 - 0x000007fefb864000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll
0x000007fefd950000 - 0x000007fefd9c1000 C:\Windows\system32\SHLWAPI.dll
0x000007fefd0e0000 - 0x000007fefd10e000 C:\Windows\system32\IMM32.DLL
0x000007feff0c0000 - 0x000007feff1c9000 C:\Windows\system32\MSCTF.dll
0x0000000072ad0000 - 0x0000000072ba1000 C:\Program Files\Java\jre7\bin\msvcr100.dll
0x0000000071580000 - 0x0000000071ca1000 C:\Program Files\Java\jre7\bin\server\jvm.dll
0x000007fef7760000 - 0x000007fef7769000 C:\Windows\system32\WSOCK32.dll
0x000007fefd410000 - 0x000007fefd45d000 C:\Windows\system32\WS2_32.dll
0x000007fefd110000 - 0x000007fefd118000 C:\Windows\system32\NSI.dll
0x000007fef9820000 - 0x000007fef985b000 C:\Windows\system32\WINMM.dll
0x0000000077080000 - 0x0000000077087000 C:\Windows\system32\PSAPI.DLL
0x0000000072ac0000 - 0x0000000072acf000 C:\Program Files\Java\jre7\bin\verify.dll
0x0000000071550000 - 0x0000000071578000 C:\Program Files\Java\jre7\bin\java.dll
0x0000000072aa0000 - 0x0000000072ab5000 C:\Program Files\Java\jre7\bin\zip.dll
0x0000000180000000 - 0x000000018001d000 C:\Epilogue\gameserver\jsr16764.dll
0x0000000071530000 - 0x0000000071549000 C:\Program Files\Java\jre7\bin\net.dll
0x000007fefc410000 - 0x000007fefc465000 C:\Windows\system32\mswsock.dll
0x000007fefc400000 - 0x000007fefc407000 C:\Windows\System32\wship6.dll
0x0000000071510000 - 0x0000000071521000 C:\Program Files\Java\jre7\bin\nio.dll
0x000007fefbe00000 - 0x000007fefbe07000 C:\Windows\System32\wshtcpip.dll
0x000007fefb580000 - 0x000007fefb595000 C:\Windows\system32\NLAapi.dll
0x000007fef8ef0000 - 0x000007fef8f05000 C:\Windows\system32\napinsp.dll
0x000007fefc290000 - 0x000007fefc2eb000 C:\Windows\system32\DNSAPI.dll
0x000007fef8ee0000 - 0x000007fef8eeb000 C:\Windows\System32\winrnr.dll
0x000007fefaff0000 - 0x000007fefb017000 C:\Windows\system32\IPHLPAPI.DLL
0x000007fefafe0000 - 0x000007fefafeb000 C:\Windows\system32\WINNSI.DLL
0x000007fefadc0000 - 0x000007fefae13000 C:\Windows\System32\fwpuclnt.dll
0x000007fef86d0000 - 0x000007fef86d8000 C:\Windows\system32\rasadhlp.dll
0x000007fefc470000 - 0x000007fefc488000 C:\Windows\system32\CRYPTSP.dll
0x000007fefc170000 - 0x000007fefc1b7000 C:\Windows\system32\rsaenh.dll
0x000007fefceb0000 - 0x000007fefcece000 C:\Windows\system32\USERENV.dll
0x000007fefcc80000 - 0x000007fefcc8f000 C:\Windows\system32\profapi.dll
0x000007fefcad0000 - 0x000007fefcadf000 C:\Windows\system32\CRYPTBASE.dll
0x0000000071500000 - 0x000000007150b000 C:\Program Files\Java\jre7\bin\management.dll
0x000007fef8fa0000 - 0x000007fef90c5000 C:\Windows\system32\DBGHELP.DLL
VM Arguments:
jvm_args: -Xbootclasspath/p:./jsr167.jar -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -Xms3072m -Xmx3072m -XXermSize=512m -XX:MaxPermSize=640m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSIncrementalMode -XX:MaxGCPauseMillis=500 -XX:+DoEscapeAnalysis -XX:+UseBiasedLocking -XX:+EliminateLocks -XXarallelGCThreads=10 -XXarallelCMSThreads=5 -XX:+AggressiveOpts -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=80 -XX:+CMSClassUnloadingEnabled -XX:+UseCompressedOops -XX:+UseFastAccessorMethods
java_command: l2p.gameserver.GameServer
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\MySQL\MySQL Server 5.5\bin
USERNAME=Администратор
OS=Windows_NT
PROCESSOR_IDENTIFIER=AMD64 Family 21 Model 1 Stepping 2, AuthenticAMD
--------------- S Y S T E M ---------------
OS: Windows NT 6.1 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (4 cores per cpu, 1 threads per core) family 21 model 1 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv
Memory: 4k page, physical 8351308k(1399256k free), swap 16700780k(11187776k free)
vm_info: Java HotSpot 64-Bit Server VM (23.21-b01) for windows-amd64 JRE (1.7.0_21-b11), built on Apr 4 2013 08:11:28 by "java_re" with unknown MS VC++:1600
time: Tue Aug 11 22:25:44 2015
elapsed time: 1781 seconds
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ILLEGAL_INSTRUCTION (0xc000001d) at pc=0x0000000002b426cb, pid=2816, tid=4644
#
# JRE version: 7.0_21-b11
# Java VM: Java HotSpot 64-Bit Server VM (23.21-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# J l2p.gameserver.model.Creature.isInZone(Ll2p/gameserver/model/Zone$ZoneTypeZ
#
# Core dump written. Default location: [thread 4664 also had an error]
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x000000000f2b7000): JavaThread "ScheduledThreadPool-5" [_thread_in_Java, id=4644, stack(0x0000000041c10000,0x0000000041d10000)]
siginfo: ExceptionCode=0xc000001d
Registers:
RAX=0x0000000000000000, RBX=0x00000007c478c7a0, RCX=0x0000000000010000, RDX=0x00000007c478b6f0
RSP=0x0000000041d0f360, RBP=0x00000007c478b6f0, RSI=0x0000000002bd0000, RDI=0x0000000002496374
R8 =0x0000000794f28f10, R9 =0x00000000f88f18f4, R10=0x0000000000000000, R11=0x0000000000000000
R12=0x0000000000000000, R13=0x00000000028f37cc, R14=0x0000000041d0f3e0, R15=0x000000000f2b7000
RIP=0x0000000002b426cb, EFLAGS=0x0000000000010206
Top of Stack: (sp=0x0000000041d0f360)
0x0000000041d0f360: 00000007c478c7e8 0000000792820af0
0x0000000041d0f370: 00000007d8dfbdc2 0000000041d0f3e0
0x0000000041d0f380: 00000007c478b6f0 00000007d9c12380
0x0000000041d0f390: 00000007d8dfbe20 0000000000000000
0x0000000041d0f3a0: 00000007c478b6f0 0000000002b33844
0x0000000041d0f3b0: 0000000000000032 00000007c478b6f0
0x0000000041d0f3c0: 0000000000000000 0000000000000000
0x0000000041d0f3d0: 000000073d6ebcb0 0000000792820af0
0x0000000041d0f3e0: 00000007c478b6f0 00000000028f3814
0x0000000041d0f3f0: 0000000002bd0000 0000000002922e7a
0x0000000041d0f400: 00000007631fc3c0 000000079c5696d8
0x0000000041d0f410: 00000000f88f1850 0000000002b07810
0x0000000041d0f420: 00000000000007d7 000000073abbe110
0x0000000041d0f430: 00000007627421a8 f542b9ca000003eb
0x0000000041d0f440: 00000007c7045c60 0000000002a7f898
0x0000000041d0f450: 000000000000120a 0000000794f28f10
Instructions: (pc=0x0000000002b426cb)
0x0000000002b426ab: d2 0f 85 98 04 00 00 4b 8d 1c cc 41 81 fb ff ff
0x0000000002b426bb: 00 00 0f 8d ba 04 00 00 8b c8 81 c1 00 00 01 00
0x0000000002b426cb: f0 43 1f b1 4c cc 10 0f 94 c1 0f b6 c9 85 c9 0f
0x0000000002b426db: 84 9d 04 00 00 45 85 db 0f 85 78 03 00 00 43 c7
Register to memory mapping:
RAX=0x0000000000000000 is an unknown value
RBX=0x00000007c478c7a0 is an oop
java.util.concurrent.locks.ReentrantReadWriteLock$NonfairSync
- klass: 'java/util/concurrent/locks/ReentrantReadWriteLock$NonfairSync'
RCX=0x0000000000010000 is an unknown value
RDX=0x00000007c478b6f0 is an oop
npc.model.residences.fortress.peace.SuspiciousMerchantInstance
- klass: 'npc/model/residences/fortress/peace/SuspiciousMerchantInstance'
RSP=0x0000000041d0f360 is pointing into the stack for thread: 0x000000000f2b7000
RBP=0x00000007c478b6f0 is an oop
npc.model.residences.fortress.peace.SuspiciousMerchantInstance
- klass: 'npc/model/residences/fortress/peace/SuspiciousMerchantInstance'
RSI=0x0000000002bd0000 is an unknown value
RDI=0x0000000002496374 is an Interpreter codelet
return entry points [0x0000000002495820, 0x0000000002497620] 7680 bytes
R8 =0x0000000794f28f10 is an oop
java.lang.Thread
- klass: 'java/lang/Thread'
R9 =0x00000000f88f18f4 is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x0000000000000000 is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x00000000028f3610 [CodeBlob (0x00000000028f3610)]
Framesize: 6
R14=0x0000000041d0f3e0 is pointing into the stack for thread: 0x000000000f2b7000
R15=0x000000000f2b7000 is a thread
Stack: [0x0000000041c10000,0x0000000041d10000], sp=0x0000000041d0f360, free space=1020k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
J l2p.gameserver.model.Creature.isInZone(Ll2p/gameserver/model/Zone$ZoneTypeZ
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x0000000011eba800 JavaThread "HikariCP connection filler" daemon [_thread_blocked, id=5104, stack(0x0000000045550000,0x0000000045650000)]
0x0000000011eb8000 JavaThread "DestroyJavaVM" [_thread_blocked, id=3020, stack(0x0000000002390000,0x0000000002490000)]
0x0000000011704000 JavaThread "Thread-36" [_thread_in_native, id=4744, stack(0x0000000045430000,0x0000000045530000)]
0x0000000011703000 JavaThread "SelectorThread:7777" [_thread_blocked, id=4740, stack(0x0000000044fc0000,0x00000000450c0000)]
0x0000000011702800 JavaThread "ShutdownCounter" daemon [_thread_blocked, id=4736, stack(0x0000000045300000,0x0000000045400000)]
0x0000000011701800 JavaThread "Thread-32" [_thread_blocked, id=4732, stack(0x00000000450e0000,0x00000000451e0000)]
0x0000000011700000 JavaThread "ThreadPoolExecutor-8" [_thread_in_Java, id=4724, stack(0x0000000044820000,0x0000000044920000)]
0x00000000116ff800 JavaThread "ThreadPoolExecutor-7" [_thread_blocked, id=4720, stack(0x0000000044ec0000,0x0000000044fc0000)]
0x00000000116fe800 JavaThread "ThreadPoolExecutor-6" [_thread_in_Java, id=4716, stack(0x0000000044dc0000,0x0000000044ec0000)]
0x00000000116fe000 JavaThread "ThreadPoolExecutor-5" [_thread_blocked, id=4712, stack(0x0000000044c60000,0x0000000044d60000)]
0x00000000116fd000 JavaThread "ThreadPoolExecutor-4" [_thread_blocked, id=4708, stack(0x0000000044b60000,0x0000000044c60000)]
0x00000000116fc800 JavaThread "ThreadPoolExecutor-3" [_thread_blocked, id=4704, stack(0x0000000044980000,0x0000000044a80000)]
0x00000000116fb800 JavaThread "ThreadPoolExecutor-2" [_thread_blocked, id=4700, stack(0x00000000446f0000,0x00000000447f0000)]
0x00000000116fb000 JavaThread "ThreadPoolExecutor-1" [_thread_blocked, id=4696, stack(0x0000000043ee0000,0x0000000043fe0000)]
0x00000000116fa000 JavaThread "ScheduledThreadPool-16" [_thread_in_Java, id=4688, stack(0x00000000445c0000,0x00000000446c0000)]
0x00000000116f9800 JavaThread "ScheduledThreadPool-15" [_thread_in_Java, id=4684, stack(0x0000000044460000,0x0000000044560000)]
0x00000000116f8800 JavaThread "ScheduledThreadPool-14" [_thread_in_Java, id=4680, stack(0x00000000442c0000,0x00000000443c0000)]
0x00000000116f8000 JavaThread "ScheduledThreadPool-13" [_thread_in_Java, id=4676, stack(0x00000000440c0000,0x00000000441c0000)]
0x00000000116f7000 JavaThread "ScheduledThreadPool-12" [_thread_in_Java, id=4672, stack(0x0000000041a50000,0x0000000041b50000)]
0x00000000116f6800 JavaThread "ScheduledThreadPool-11" [_thread_in_Java, id=4668, stack(0x0000000043de0000,0x0000000043ee0000)]
0x00000000116f5800 JavaThread "ScheduledThreadPool-10" [_thread_in_Java, id=4664, stack(0x0000000043cb0000,0x0000000043db0000)]
0x000000000f2b9800 JavaThread "ScheduledThreadPool-9" [_thread_in_Java, id=4660, stack(0x0000000041950000,0x0000000041a50000)]
0x000000000f2b8800 JavaThread "ScheduledThreadPool-8" [_thread_in_Java, id=4656, stack(0x0000000041850000,0x0000000041950000)]
0x000000000f2b8000 JavaThread "ScheduledThreadPool-7" [_thread_in_Java, id=4652, stack(0x0000000041300000,0x0000000041400000)]
0x000000000f2b6800 JavaThread "ScheduledThreadPool-6" [_thread_in_Java, id=4648, stack(0x00000000416d0000,0x00000000417d0000)]
=>0x000000000f2b7000 JavaThread "ScheduledThreadPool-5" [_thread_in_Java, id=4644, stack(0x0000000041c10000,0x0000000041d10000)]
0x000000000f2b5800 JavaThread "ScheduledThreadPool-4" [_thread_in_Java, id=4620, stack(0x0000000041560000,0x0000000041660000)]
0x000000000f2b5000 JavaThread "ScheduledThreadPool-3" [_thread_in_Java, id=4616, stack(0x0000000041440000,0x0000000041540000)]
0x000000000f2b4000 JavaThread "net.sf.ehcache.CacheManager@165cef0c" daemon [_thread_blocked, id=3128, stack(0x00000000149c0000,0x0000000014ac0000)]
0x000000000f2b3800 JavaThread "ScheduledThreadPool-2" [_thread_in_Java, id=1604, stack(0x00000000148a0000,0x00000000149a0000)]
0x000000000f2b2800 JavaThread "ScheduledThreadPool-1" [_thread_in_Java, id=2452, stack(0x0000000014720000,0x0000000014820000)]
0x000000001220a800 JavaThread "Hikari Housekeeping Timer (pool HikariPool-0)" daemon [_thread_blocked, id=2636, stack(0x0000000013d10000,0x0000000013e10000)]
0x000000000f268000 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=2400, stack(0x00000000102e0000,0x00000000103e0000)]
0x000000000f0f5000 JavaThread "AsyncAppender-Dispatcher-Thread-4" daemon [_thread_blocked, id=628, stack(0x0000000010850000,0x0000000010950000)]
0x000000000efa9800 JavaThread "AsyncAppender-Dispatcher-Thread-3" daemon [_thread_blocked, id=2628, stack(0x00000000106a0000,0x00000000107a0000)]
0x000000000ef4e000 JavaThread "AsyncAppender-Dispatcher-Thread-2" daemon [_thread_blocked, id=1476, stack(0x0000000010590000,0x0000000010690000)]
0x000000000f0c8800 JavaThread "AsyncAppender-Dispatcher-Thread-1" daemon [_thread_blocked, id=2376, stack(0x00000000103f0000,0x00000000104f0000)]
0x000000000eed1000 JavaThread "AsyncAppender-Dispatcher-Thread-0" daemon [_thread_blocked, id=1416, stack(0x000000000f8b0000,0x000000000f9b0000)]
0x000000000ed28800 JavaThread "Service Thread" daemon [_thread_blocked, id=3004, stack(0x000000000fd00000,0x000000000fe00000)]
0x000000000ed0f800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=2860, stack(0x000000000fbf0000,0x000000000fcf0000)]
0x000000000ed09800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=2864, stack(0x000000000faf0000,0x000000000fbf0000)]
0x000000000ed08800 JavaThread "Attach Listener" daemon [_thread_blocked, id=2876, stack(0x000000000f9d0000,0x000000000fad0000)]
0x000000000ed08000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2888, stack(0x000000000f790000,0x000000000f890000)]
0x000000000ed07000 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=2880, stack(0x000000000f5b0000,0x000000000f6b0000)]
0x000000000e927800 JavaThread "Finalizer" daemon [_thread_blocked, id=3056, stack(0x000000000eba0000,0x000000000eca0000)]
0x000000000e91d000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3060, stack(0x000000000e990000,0x000000000ea90000)]
Other Threads:
0x000000000e915000 VMThread [stack: 0x000000000e2a0000,0x000000000e3a0000] [id=3000]
0x000000000ed2c000 WatcherThread [stack: 0x000000000f4a0000,0x000000000f5a0000] [id=1420]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
par new generation total 766784K, used 617766K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 90% used [0x0000000718000000, 0x000000073db49a30, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2108315K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38003K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Card table byte_map: [0x0000000006490000,0x0000000006be0000] byte_map_base: 0x0000000002bd0000
Polling page: 0x0000000000230000
Code Cache [0x0000000002490000, 0x0000000002b90000, 0x0000000005490000)
total_blobs=2649 nmethods=2137 adapters=459 free_code_cache=42160Kb largest_free_block=42993600
Compilation events (10 events):
Event: 1704.115 Thread 0x000000000ed0f800 2381 java.nio.Bits:hort0 (3 bytes)
Event: 1704.115 Thread 0x000000000ed0f800 nmethod 2381 0x00000000026a04d0 code [0x00000000026a0600, 0x00000000026a0638]
Event: 1704.115 Thread 0x000000000ed0f800 2382 java.nio.Bits:hort1 (6 bytes)
Event: 1704.115 Thread 0x000000000ed0f800 nmethod 2382 0x00000000026a6450 code [0x00000000026a6580, 0x00000000026a65b8]
Event: 1707.206 Thread 0x000000000ed0f800 2383 l2p.commons.net.nio.SendablePacket::writeH (11 bytes)
Event: 1707.208 Thread 0x000000000ed0f800 nmethod 2383 0x00000000028f3b90 code [0x00000000028f3ce0, 0x00000000028f3e88]
Event: 1714.082 Thread 0x000000000ed09800 2384 l2p.gameserver.data.xml.holder.SkillAcquireHolder::getAvaliableList (147 bytes)
Event: 1714.092 Thread 0x000000000ed09800 nmethod 2384 0x0000000002924ad0 code [0x0000000002924ca0, 0x0000000002925478]
Event: 1746.909 Thread 0x000000000ed0f800 2385 ! l2p.gameserver.model.Creature::isInZone (90 bytes)
Event: 1746.922 Thread 0x000000000ed0f800 nmethod 2385 0x0000000002b42410 code [0x0000000002b42600, 0x0000000002b42e70]
GC Heap History (10 events):
Event: 36.576 GC heap before
{Heap before GC invocations=4 (full 2):
par new generation total 766784K, used 736227K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 64% used [0x00000007419a0000, 0x0000000744ef8e18, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1119656K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 26473K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 36.846 GC heap after
Heap after GC invocations=5 (full 2):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1168063K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 26473K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 45.490 GC heap before
{Heap before GC invocations=5 (full 2):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1167940K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28107K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 45.683 GC heap after
Heap after GC invocations=6 (full 2):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1257163K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28107K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 54.067 GC heap before
{Heap before GC invocations=6 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1257163K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30087K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 54.458 GC heap after
Heap after GC invocations=7 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1369686K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30087K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 58.147 GC heap before
{Heap before GC invocations=7 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1369637K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31337K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 59.385 GC heap after
Heap after GC invocations=8 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1888541K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31337K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 663.402 GC heap before
{Heap before GC invocations=8 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1886899K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 36791K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 668.174 GC heap after
Heap after GC invocations=9 (full 4):
par new generation total 766784K, used 0K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2114200K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 36766K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Deoptimization events (10 events):
Event: 1502.170 Thread 0x00000000116fc800 Uncommon trap -42 fr.pc 0x0000000002b680ec
Event: 1520.538 Thread 0x00000000116fe800 Uncommon trap -75 fr.pc 0x0000000002a10488
Event: 1599.816 Thread 0x00000000116fb800 Uncommon trap -83 fr.pc 0x0000000002b36af8
Event: 1599.816 Thread 0x00000000116fb800 Uncommon trap -83 fr.pc 0x0000000002b27e44
Event: 1631.218 Thread 0x00000000116f8000 Uncommon trap -12 fr.pc 0x0000000002b84d70
Event: 1688.435 Thread 0x00000000116ff800 Uncommon trap -83 fr.pc 0x00000000026989a4
Event: 1740.652 Thread 0x00000000116fc800 Uncommon trap -20 fr.pc 0x0000000002a0c9cc
Event: 1740.652 Thread 0x00000000116fb800 Uncommon trap -20 fr.pc 0x0000000002633cd8
Event: 1740.654 Thread 0x00000000116fd000 Uncommon trap -20 fr.pc 0x000000000263488c
Event: 1741.651 Thread 0x0000000011700000 Uncommon trap -20 fr.pc 0x00000000026318e0
Internal exceptions (10 events):
Event: 1640.794 Thread 0x00000000116fd000 Threw 0x000000073815c878 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1717.985 Thread 0x00000000116fb800 Threw 0x000000073b10e8f0 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.645 Thread 0x0000000011703000 Threw 0x000000073cd7f148 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.646 Thread 0x0000000011703000 Threw 0x000000073cd8a438 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.647 Thread 0x0000000011700000 Threw 0x0000000738d927f8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.647 Thread 0x0000000011700000 Threw 0x000000073cff2ef8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.648 Thread 0x0000000011700000 Threw 0x000000073cff8798 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.678 Thread 0x00000000116fb800 Threw 0x000000073b130578 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1740.789 Thread 0x00000000116fb800 Threw 0x000000073d3a93f8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1740.789 Thread 0x00000000116f6800 Threw 0x000000073cccea20 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Events (10 events):
Event: 1740.789 loading class 0x0000000011350560
Event: 1740.789 loading class 0x0000000011350560 done
Event: 1740.789 loading class 0x0000000011e00ec0
Event: 1740.789 loading class 0x0000000011e00ec0 done
Event: 1741.651 Thread 0x0000000011700000 DEOPT PACKING pc=0x00000000026318e0 sp=0x000000004491eb00
Event: 1741.651 Thread 0x0000000011700000 DEOPT UNPACKING pc=0x00000000024c9164 sp=0x000000004491ea90 mode 2
Event: 1741.806 Thread 0x0000000011eba800 Thread added: 0x0000000011eba800
Event: 1743.806 Executing VM operation: RevokeBias
Event: 1743.807 Executing VM operation: RevokeBias done
Event: 1743.807 Thread 0x0000000011eba800 Thread exited: 0x0000000011eba800
Dynamic libraries:
0x000000013fb10000 - 0x000000013fb43000 C:\Windows\system32\java.exe
0x0000000076ec0000 - 0x0000000077069000 C:\Windows\SYSTEM32\ntdll.dll
0x0000000076ca0000 - 0x0000000076dbf000 C:\Windows\system32\kernel32.dll
0x000007fefce30000 - 0x000007fefce9c000 C:\Windows\system32\KERNELBASE.dll
0x000007fefd120000 - 0x000007fefd1fb000 C:\Windows\system32\ADVAPI32.dll
0x000007fefd030000 - 0x000007fefd0cf000 C:\Windows\system32\msvcrt.dll
0x000007fefd930000 - 0x000007fefd94f000 C:\Windows\SYSTEM32\sechost.dll
0x000007fefeb90000 - 0x000007fefecbd000 C:\Windows\system32\RPCRT4.dll
0x0000000076dc0000 - 0x0000000076eba000 C:\Windows\system32\USER32.dll
0x000007fefe8c0000 - 0x000007fefe927000 C:\Windows\system32\GDI32.dll
0x000007fefd0d0000 - 0x000007fefd0de000 C:\Windows\system32\LPK.dll
0x000007fefe930000 - 0x000007fefe9f9000 C:\Windows\system32\USP10.dll
0x000007fefb670000 - 0x000007fefb864000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll
0x000007fefd950000 - 0x000007fefd9c1000 C:\Windows\system32\SHLWAPI.dll
0x000007fefd0e0000 - 0x000007fefd10e000 C:\Windows\system32\IMM32.DLL
0x000007feff0c0000 - 0x000007feff1c9000 C:\Windows\system32\MSCTF.dll
0x0000000072ad0000 - 0x0000000072ba1000 C:\Program Files\Java\jre7\bin\msvcr100.dll
0x0000000071580000 - 0x0000000071ca1000 C:\Program Files\Java\jre7\bin\server\jvm.dll
0x000007fef7760000 - 0x000007fef7769000 C:\Windows\system32\WSOCK32.dll
0x000007fefd410000 - 0x000007fefd45d000 C:\Windows\system32\WS2_32.dll
0x000007fefd110000 - 0x000007fefd118000 C:\Windows\system32\NSI.dll
0x000007fef9820000 - 0x000007fef985b000 C:\Windows\system32\WINMM.dll
0x0000000077080000 - 0x0000000077087000 C:\Windows\system32\PSAPI.DLL
0x0000000072ac0000 - 0x0000000072acf000 C:\Program Files\Java\jre7\bin\verify.dll
0x0000000071550000 - 0x0000000071578000 C:\Program Files\Java\jre7\bin\java.dll
0x0000000072aa0000 - 0x0000000072ab5000 C:\Program Files\Java\jre7\bin\zip.dll
0x0000000180000000 - 0x000000018001d000 C:\Epilogue\gameserver\jsr16764.dll
0x0000000071530000 - 0x0000000071549000 C:\Program Files\Java\jre7\bin\net.dll
0x000007fefc410000 - 0x000007fefc465000 C:\Windows\system32\mswsock.dll
0x000007fefc400000 - 0x000007fefc407000 C:\Windows\System32\wship6.dll
0x0000000071510000 - 0x0000000071521000 C:\Program Files\Java\jre7\bin\nio.dll
0x000007fefbe00000 - 0x000007fefbe07000 C:\Windows\System32\wshtcpip.dll
0x000007fefb580000 - 0x000007fefb595000 C:\Windows\system32\NLAapi.dll
0x000007fef8ef0000 - 0x000007fef8f05000 C:\Windows\system32\napinsp.dll
0x000007fefc290000 - 0x000007fefc2eb000 C:\Windows\system32\DNSAPI.dll
0x000007fef8ee0000 - 0x000007fef8eeb000 C:\Windows\System32\winrnr.dll
0x000007fefaff0000 - 0x000007fefb017000 C:\Windows\system32\IPHLPAPI.DLL
0x000007fefafe0000 - 0x000007fefafeb000 C:\Windows\system32\WINNSI.DLL
0x000007fefadc0000 - 0x000007fefae13000 C:\Windows\System32\fwpuclnt.dll
0x000007fef86d0000 - 0x000007fef86d8000 C:\Windows\system32\rasadhlp.dll
0x000007fefc470000 - 0x000007fefc488000 C:\Windows\system32\CRYPTSP.dll
0x000007fefc170000 - 0x000007fefc1b7000 C:\Windows\system32\rsaenh.dll
0x000007fefceb0000 - 0x000007fefcece000 C:\Windows\system32\USERENV.dll
0x000007fefcc80000 - 0x000007fefcc8f000 C:\Windows\system32\profapi.dll
0x000007fefcad0000 - 0x000007fefcadf000 C:\Windows\system32\CRYPTBASE.dll
0x0000000071500000 - 0x000000007150b000 C:\Program Files\Java\jre7\bin\management.dll
0x000007fef8fa0000 - 0x000007fef90c5000 C:\Windows\system32\DBGHELP.DLL
VM Arguments:
jvm_args: -Xbootclasspath/p:./jsr167.jar -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -Xms3072m -Xmx3072m -XXermSize=512m -XX:MaxPermSize=640m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSIncrementalMode -XX:MaxGCPauseMillis=500 -XX:+DoEscapeAnalysis -XX:+UseBiasedLocking -XX:+EliminateLocks -XXarallelGCThreads=10 -XXarallelCMSThreads=5 -XX:+AggressiveOpts -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=80 -XX:+CMSClassUnloadingEnabled -XX:+UseCompressedOops -XX:+UseFastAccessorMethods
java_command: l2p.gameserver.GameServer
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\MySQL\MySQL Server 5.5\bin
USERNAME=Администратор
OS=Windows_NT
PROCESSOR_IDENTIFIER=AMD64 Family 21 Model 1 Stepping 2, AuthenticAMD
--------------- S Y S T E M ---------------
OS: Windows NT 6.1 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (4 cores per cpu, 1 threads per core) family 21 model 1 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv
Memory: 4k page, physical 8351308k(1399256k free), swap 16700780k(11187776k free)
vm_info: Java HotSpot 64-Bit Server VM (23.21-b01) for windows-amd64 JRE (1.7.0_21-b11), built on Apr 4 2013 08:11:28 by "java_re" with unknown MS VC++:1600
time: Tue Aug 11 22:25:44 2015
elapsed time: 1781 seconds
2
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000002c4cda4, pid=2452, tid=908
#
# JRE version: 7.0_21-b11
# Java VM: Java HotSpot 64-Bit Server VM (23.21-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# J com.mysql.jdbc.ConnectionImpl.loadServerVariables()V
#
# Core dump written. Default location: [thread 2412 also had an error]
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x000000001129e800): JavaThread "HikariCP connection filler" daemon [_thread_in_Java, id=908, stack(0x0000000045cd0000,0x0000000045dd0000)]
siginfo: ExceptionCode=0xc0000005, writing address 0x00000000000004c6
Registers:
RAX=0x0000000720670be0, RBX=0x0000000720670bc8, RCX=0x0000000002b90000, RDX=0x0000000000000000
RSP=0x0000000045dce970, RBP=0x00000000e40ce169, RSI=0x0000000000000005, RDI=0x0000000003903385
R8 =0x0000000720670b30, R9 =0x0000000000000066, R10=0x0000000003903385, R11=0x0000000002b90000
R12=0x0000000000000000, R13=0x00000000025364df, R14=0x000000000253648d, R15=0x000000001129e800
RIP=0x0000000002c4cda4, EFLAGS=0x0000000000010213
Top of Stack: (sp=0x0000000045dce970)
0x0000000045dce970: 00000007d8748064 0000000045dce9b8
0x0000000045dce980: 00000007d8ae8340 0000000000000000
0x0000000045dce990: 0000000000000066 000000072066ffe8
0x0000000045dce9a0: 00000007206702a0 0000000720670ae8
0x0000000045dce9b0: 0000000764574b08 0000000764507c10
0x0000000045dce9c0: 00000007643e5178 00000007643e5898
0x0000000045dce9d0: 00000007627ae138 0000000763e02468
0x0000000045dce9e0: 00000007645698b0 0000000763b70470
0x0000000045dce9f0: 0000000763e02ac8 00000007643e8088
0x0000000045dcea00: 00000007643e7bd8 000000076456f800
0x0000000045dcea10: 0000000763b93540 000000075a1649e0
0x0000000045dcea20: 00000007643411f0 0000000763a4a500
0x0000000045dcea30: 00000007643e6be8 0000000762a15ce0
0x0000000045dcea40: 000000075a164b40 0000000762a15ad8
0x0000000045dcea50: 0000000763ce7c90 0000000045dceab0
0x0000000045dcea60: 00000000025363d3 000000072065e1c8
Instructions: (pc=0x0000000002c4cda4)
0x0000000002c4cd84: ef 09 b9 00 00 b9 02 44 88 24 39 45 89 53 24 4d
0x0000000002c4cd94: 8b d3 49 c1 ea 09 41 bb 00 00 b9 02 47 88 24 13
0x0000000002c4cda4: 41 89 a9 60 04 00 00 4d 8b d1 49 c1 ea 09 47 88
0x0000000002c4cdb4: 24 13 4c 8b 54 24 28 45 8b 5a 08 41 81 fb e7 ed
Register to memory mapping:
RAX=
[error occurred during error reporting (printing register info), id 0xc0000005]
Stack: [0x0000000045cd0000,0x0000000045dd0000], sp=0x0000000045dce970, free space=1018k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
J com.mysql.jdbc.ConnectionImpl.loadServerVariables()V
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
=>0x000000001129e800 JavaThread "HikariCP connection filler" daemon [_thread_in_Java, id=908, stack(0x0000000045cd0000,0x0000000045dd0000)]
0x000000001129d800 JavaThread "DestroyJavaVM" [_thread_blocked, id=4840, stack(0x0000000002430000,0x0000000002530000)]
0x000000001129d000 JavaThread "Thread-36" [_thread_in_Java, id=4892, stack(0x0000000045920000,0x0000000045a20000)]
0x000000001129c000 JavaThread "SelectorThread:7777" [_thread_in_Java, id=4912, stack(0x0000000045680000,0x0000000045780000)]
0x000000001129b800 JavaThread "ShutdownCounter" daemon [_thread_in_Java, id=4900, stack(0x00000000453f0000,0x00000000454f0000)]
0x000000001129a800 JavaThread "Thread-32" [_thread_in_Java, id=5116, stack(0x0000000045540000,0x0000000045640000)]
0x000000001129a000 JavaThread "ThreadPoolExecutor-8" [_thread_blocked, id=5000, stack(0x0000000045170000,0x0000000045270000)]
0x0000000011299000 JavaThread "ThreadPoolExecutor-7" [_thread_blocked, id=4996, stack(0x0000000045280000,0x0000000045380000)]
0x000000000f561000 JavaThread "ThreadPoolExecutor-6" [_thread_blocked, id=5040, stack(0x0000000044fd0000,0x00000000450d0000)]
0x000000000f560800 JavaThread "ThreadPoolExecutor-5" [_thread_blocked, id=2944, stack(0x0000000044db0000,0x0000000044eb0000)]
0x000000000f55f800 JavaThread "ThreadPoolExecutor-4" [_thread_blocked, id=2896, stack(0x0000000044c40000,0x0000000044d40000)]
0x000000000f55f000 JavaThread "ThreadPoolExecutor-3" [_thread_blocked, id=2484, stack(0x0000000044b10000,0x0000000044c10000)]
0x000000000f55e000 JavaThread "ThreadPoolExecutor-2" [_thread_blocked, id=664, stack(0x00000000449e0000,0x0000000044ae0000)]
0x000000000f55d800 JavaThread "ThreadPoolExecutor-1" [_thread_blocked, id=2940, stack(0x00000000448c0000,0x00000000449c0000)]
0x000000000f55c800 JavaThread "ScheduledThreadPool-16" [_thread_in_Java, id=1904, stack(0x0000000044730000,0x0000000044830000)]
0x000000000f55c000 JavaThread "ScheduledThreadPool-15" [_thread_in_Java, id=2668, stack(0x0000000044320000,0x0000000044420000)]
0x000000000f55b000 JavaThread "ScheduledThreadPool-14" [_thread_in_Java, id=2664, stack(0x0000000044620000,0x0000000044720000)]
0x000000000f55a800 JavaThread "ScheduledThreadPool-13" [_thread_in_Java, id=2396, stack(0x0000000044490000,0x0000000044590000)]
0x000000000f559800 JavaThread "ScheduledThreadPool-12" [_thread_in_Java, id=2156, stack(0x0000000043ec0000,0x0000000043fc0000)]
0x000000000f559000 JavaThread "ScheduledThreadPool-11" [_thread_in_Java, id=2000, stack(0x00000000441c0000,0x00000000442c0000)]
0x000000000f558000 JavaThread "ScheduledThreadPool-10" [_thread_in_Java, id=2584, stack(0x0000000043fd0000,0x00000000440d0000)]
0x000000000f557800 JavaThread "ScheduledThreadPool-9" [_thread_in_Java, id=2580, stack(0x0000000040b90000,0x0000000040c90000)]
0x000000000f556800 JavaThread "ScheduledThreadPool-8" [_thread_in_Java, id=1416, stack(0x0000000043cf0000,0x0000000043df0000)]
0x000000000f556000 JavaThread "ScheduledThreadPool-7" [_thread_in_Java, id=2524, stack(0x00000000407b0000,0x00000000408b0000)]
0x000000000f554800 JavaThread "ScheduledThreadPool-6" [_thread_in_Java, id=1664, stack(0x0000000040920000,0x0000000040a20000)]
0x000000000f555000 JavaThread "ScheduledThreadPool-5" [_thread_in_Java, id=2652, stack(0x0000000040a50000,0x0000000040b50000)]
0x000000000f553800 JavaThread "ScheduledThreadPool-4" [_thread_in_Java, id=1448, stack(0x0000000040690000,0x0000000040790000)]
0x000000000f553000 JavaThread "ScheduledThreadPool-3" [_thread_in_Java, id=2412, stack(0x0000000040550000,0x0000000040650000)]
0x000000000f552000 JavaThread "net.sf.ehcache.CacheManager@28c7a89f" daemon [_thread_blocked, id=1496, stack(0x0000000013a90000,0x0000000013b90000)]
0x000000000f5a9000 JavaThread "ScheduledThreadPool-2" [_thread_in_Java, id=1172, stack(0x0000000013bb0000,0x0000000013cb0000)]
0x0000000011fa0800 JavaThread "ScheduledThreadPool-1" [_thread_in_Java, id=2432, stack(0x00000000138e0000,0x00000000139e0000)]
0x0000000011244000 JavaThread "Hikari Housekeeping Timer (pool HikariPool-0)" daemon [_thread_in_Java, id=1680, stack(0x0000000012f30000,0x0000000013030000)]
0x000000000f383800 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=1144, stack(0x0000000010de0000,0x0000000010ee0000)]
0x000000000f1a9000 JavaThread "AsyncAppender-Dispatcher-Thread-4" daemon [_thread_blocked, id=1916, stack(0x0000000010020000,0x0000000010120000)]
0x000000000f1bc000 JavaThread "AsyncAppender-Dispatcher-Thread-3" daemon [_thread_blocked, id=2212, stack(0x0000000010a40000,0x0000000010b40000)]
0x000000000f242000 JavaThread "AsyncAppender-Dispatcher-Thread-2" daemon [_thread_blocked, id=2216, stack(0x0000000010860000,0x0000000010960000)]
0x000000000f248000 JavaThread "AsyncAppender-Dispatcher-Thread-1" daemon [_thread_blocked, id=1932, stack(0x0000000010640000,0x0000000010740000)]
0x000000000f027000 JavaThread "AsyncAppender-Dispatcher-Thread-0" daemon [_thread_blocked, id=1820, stack(0x0000000010180000,0x0000000010280000)]
0x000000000ee66800 JavaThread "Service Thread" daemon [_thread_blocked, id=2628, stack(0x000000000fd00000,0x000000000fe00000)]
0x000000000ee62000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=2636, stack(0x000000000f8c0000,0x000000000f9c0000)]
0x000000000ee5b800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=2608, stack(0x000000000fa10000,0x000000000fb10000)]
0x000000000ee5b000 JavaThread "Attach Listener" daemon [_thread_blocked, id=2640, stack(0x000000000f7b0000,0x000000000f8b0000)]
0x000000000ee5a000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1148, stack(0x000000000ea10000,0x000000000eb10000)]
0x000000000ee59000 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=2612, stack(0x000000000f610000,0x000000000f710000)]
0x000000000e892000 JavaThread "Finalizer" daemon [_thread_blocked, id=2408, stack(0x000000000ecf0000,0x000000000edf0000)]
0x000000000e88f000 JavaThread "Reference Handler" daemon [_thread_blocked, id=2456, stack(0x000000000eb50000,0x000000000ec50000)]
Other Threads:
0x000000000e887000 VMThread [stack: 0x000000000e8f0000,0x000000000e9f0000] [id=2448]
0x000000000ee82000 WatcherThread [stack: 0x000000000fef0000,0x000000000fff0000] [id=1184]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
par new generation total 766784K, used 137829K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 20% used [0x0000000718000000, 0x0000000720699460, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2111848K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38067K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Card table byte_map: [0x0000000006450000,0x0000000006ba0000] byte_map_base: 0x0000000002b90000
Polling page: 0x0000000000130000
Code Cache [0x0000000002530000, 0x0000000002c60000, 0x0000000005530000)
total_blobs=2651 nmethods=2139 adapters=460 free_code_cache=41973Kb largest_free_block=42842240
Compilation events (10 events):
Event: 1831.235 Thread 0x000000000ee62000 nmethod 2391 0x0000000002c3ad10 code [0x0000000002c3af20, 0x0000000002c3c260]
Event: 1831.238 Thread 0x000000000ee5b800 nmethod 2392 0x0000000002bd9ad0 code [0x0000000002bd9d20, 0x0000000002bdab20]
Event: 1831.300 Thread 0x000000000ee62000 2393 sun.nio.cs.ThreadLocalCoders$Cache::forName (111 bytes)
Event: 1831.320 Thread 0x000000000ee62000 nmethod 2393 0x0000000002c3d350 code [0x0000000002c3d580, 0x0000000002c3e880]
Event: 1831.324 Thread 0x000000000ee5b800 2394 java.util.ResourceBundle::getString (9 bytes)
Event: 1831.324 Thread 0x000000000ee62000 2395 java.util.ResourceBundle::getObject (82 bytes)
Event: 1831.336 Thread 0x000000000ee5b800 nmethod 2394 0x0000000002c3f490 code [0x0000000002c3f680, 0x0000000002c3fe60]
Event: 1831.336 Thread 0x000000000ee62000 nmethod 2395 0x00000000028e95d0 code [0x00000000028e97c0, 0x00000000028e9fc0]
Event: 1831.336 Thread 0x000000000ee62000 2396 ! com.mysql.jdbc.ConnectionImpl::loadServerVariables (715 bytes)
Event: 1831.462 Thread 0x000000000ee62000 nmethod 2396 0x0000000002c4b890 code [0x0000000002c4bf00, 0x0000000002c50410]
GC Heap History (10 events):
Event: 48.322 GC heap before
{Heap before GC invocations=5 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1167983K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28067K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 48.757 GC heap after
Heap after GC invocations=6 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1259431K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28067K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 55.902 GC heap before
{Heap before GC invocations=6 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1257392K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30078K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 56.302 GC heap after
Heap after GC invocations=7 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1370348K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30078K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 60.175 GC heap before
{Heap before GC invocations=7 (full 4):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1370348K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31219K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 61.514 GC heap after
Heap after GC invocations=8 (full 4):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1876795K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31219K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 553.395 GC heap before
{Heap before GC invocations=8 (full 4):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1875921K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 37703K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 558.157 GC heap after
Heap after GC invocations=9 (full 5):
par new generation total 766784K, used 0K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2109632K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 37689K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 1627.849 GC heap before
{Heap before GC invocations=9 (full 6):
par new generation total 766784K, used 681600K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2104804K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38052K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 1632.470 GC heap after
Heap after GC invocations=10 (full 7):
par new generation total 766784K, used 0K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2111848K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38030K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Deoptimization events (10 events):
Event: 1742.530 Thread 0x000000000f55d800 Uncommon trap -34 fr.pc 0x0000000002b4de30
Event: 1742.530 Thread 0x000000000f55d800 Uncommon trap -34 fr.pc 0x0000000002b4de30
Event: 1744.411 Thread 0x000000000f55e000 Uncommon trap -34 fr.pc 0x0000000002c29508
Event: 1744.412 Thread 0x000000000f55e000 Uncommon trap -34 fr.pc 0x0000000002c13a60
Event: 1749.902 Thread 0x000000000f55c800 Uncommon trap 20 fr.pc 0x0000000002965d14
Event: 1750.783 Thread 0x000000000f558000 Uncommon trap -34 fr.pc 0x000000000269bff0
Event: 1765.691 Thread 0x000000000f55f000 Uncommon trap -34 fr.pc 0x0000000002c29508
Event: 1831.177 Thread 0x000000001129e800 Uncommon trap -34 fr.pc 0x00000000026add4c
Event: 1831.177 Thread 0x000000001129e800 Uncommon trap -34 fr.pc 0x0000000002adb6d0
Event: 1831.177 Thread 0x000000001129e800 Uncommon trap -34 fr.pc 0x000000000261689c
Internal exceptions (10 events):
Event: 1544.322 Thread 0x000000001129c000 Threw 0x000000073ee8f458 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1554.178 Thread 0x000000000f55f000 Threw 0x000000073d22b278 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1564.842 Thread 0x000000001129a000 Threw 0x000000073f6c10a0 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1651.176 Thread 0x0000000011244000 Threw 0x0000000719a7e728 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1651.178 Thread 0x000000001129e800 Implicit null exception at 0x00000000027c7622 to 0x00000000027c79c5
Event: 1682.858 Thread 0x000000000f55d800 Threw 0x000000071a3e8f00 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.090 Thread 0x0000000011299000 Threw 0x000000071b3d1d68 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1742.529 Thread 0x000000000f55d800 Threw 0x000000071c1235a8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1752.528 Thread 0x000000000f55e000 Threw 0x000000071cc553c8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1831.464 Thread 0x000000001129e800 Implicit null exception at 0x0000000002c4cda4 to 0x0000000000000000
Events (10 events):
Event: 1823.249 Executing VM operation: RevokeBias
Event: 1823.250 Executing VM operation: RevokeBias done
Event: 1831.176 Thread 0x000000001129e800 Thread added: 0x000000001129e800
Event: 1831.177 Thread 0x000000001129e800 DEOPT PACKING pc=0x00000000026add4c sp=0x0000000045dcdfe0
Event: 1831.177 Thread 0x000000001129e800 DEOPT UNPACKING pc=0x0000000002569164 sp=0x0000000045dcdf30 mode 2
Event: 1831.177 Thread 0x000000001129e800 DEOPT PACKING pc=0x0000000002adb6d0 sp=0x0000000045dce650
Event: 1831.177 Thread 0x000000001129e800 DEOPT UNPACKING pc=0x0000000002569164 sp=0x0000000045dce608 mode 2
Event: 1831.177 Thread 0x000000001129e800 DEOPT PACKING pc=0x000000000261689c sp=0x0000000045dce720
Event: 1831.177 Thread 0x000000001129e800 DEOPT UNPACKING pc=0x0000000002569164 sp=0x0000000045dce5e0 mode 2
Event: 1831.235 Thread 0x000000000ee62000 flushing nmethod 0x00000000028e95d0
Dynamic libraries:
0x000000013fc90000 - 0x000000013fcc3000 C:\Windows\system32\java.exe
0x0000000077bc0000 - 0x0000000077d69000 C:\Windows\SYSTEM32\ntdll.dll
0x00000000779a0000 - 0x0000000077abf000 C:\Windows\system32\kernel32.dll
0x000007fefd9c0000 - 0x000007fefda2c000 C:\Windows\system32\KERNELBASE.dll
0x000007feff5b0000 - 0x000007feff68b000 C:\Windows\system32\ADVAPI32.dll
0x000007fefdd40000 - 0x000007fefdddf000 C:\Windows\system32\msvcrt.dll
0x000007fefdde0000 - 0x000007fefddff000 C:\Windows\SYSTEM32\sechost.dll
0x000007feff7e0000 - 0x000007feff90d000 C:\Windows\system32\RPCRT4.dll
0x0000000077ac0000 - 0x0000000077bba000 C:\Windows\system32\USER32.dll
0x000007feff9d0000 - 0x000007feffa37000 C:\Windows\system32\GDI32.dll
0x000007fefdd30000 - 0x000007fefdd3e000 C:\Windows\system32\LPK.dll
0x000007feffac0000 - 0x000007feffb89000 C:\Windows\system32\USP10.dll
0x000007fefc370000 - 0x000007fefc564000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll
0x000007fefebf0000 - 0x000007fefec61000 C:\Windows\system32\SHLWAPI.dll
0x000007feff7b0000 - 0x000007feff7de000 C:\Windows\system32\IMM32.DLL
0x000007feff690000 - 0x000007feff799000 C:\Windows\system32\MSCTF.dll
0x00000000738b0000 - 0x0000000073981000 C:\Program Files\Java\jre7\bin\msvcr100.dll
0x0000000073180000 - 0x00000000738a1000 C:\Program Files\Java\jre7\bin\server\jvm.dll
0x000007fef6bb0000 - 0x000007fef6bb9000 C:\Windows\system32\WSOCK32.dll
0x000007feff560000 - 0x000007feff5ad000 C:\Windows\system32\WS2_32.dll
0x000007feff7a0000 - 0x000007feff7a8000 C:\Windows\system32\NSI.dll
0x000007fefa520000 - 0x000007fefa55b000 C:\Windows\system32\WINMM.dll
0x0000000077d80000 - 0x0000000077d87000 C:\Windows\system32\PSAPI.DLL
0x00000000741e0000 - 0x00000000741ef000 C:\Program Files\Java\jre7\bin\verify.dll
0x00000000741b0000 - 0x00000000741d8000 C:\Program Files\Java\jre7\bin\java.dll
0x0000000074190000 - 0x00000000741a5000 C:\Program Files\Java\jre7\bin\zip.dll
0x0000000180000000 - 0x000000018001d000 C:\Epilogue\gameserver\jsr16764.dll
0x0000000073c50000 - 0x0000000073c69000 C:\Program Files\Java\jre7\bin\net.dll
0x000007fefd0a0000 - 0x000007fefd0f5000 C:\Windows\system32\mswsock.dll
0x000007fefd370000 - 0x000007fefd377000 C:\Windows\System32\wship6.dll
0x0000000073c70000 - 0x0000000073c81000 C:\Program Files\Java\jre7\bin\nio.dll
0x000007fefcb00000 - 0x000007fefcb07000 C:\Windows\System32\wshtcpip.dll
0x000007fefc280000 - 0x000007fefc295000 C:\Windows\system32\NLAapi.dll
0x000007fef9bf0000 - 0x000007fef9c05000 C:\Windows\system32\napinsp.dll
0x000007fefcf30000 - 0x000007fefcf8b000 C:\Windows\system32\DNSAPI.dll
0x000007fef9be0000 - 0x000007fef9beb000 C:\Windows\System32\winrnr.dll
0x000007fefbd90000 - 0x000007fefbdb7000 C:\Windows\system32\IPHLPAPI.DLL
0x000007fefbd00000 - 0x000007fefbd0b000 C:\Windows\system32\WINNSI.DLL
0x000007fefbbf0000 - 0x000007fefbc43000 C:\Windows\System32\fwpuclnt.dll
0x000007fef9350000 - 0x000007fef9358000 C:\Windows\system32\rasadhlp.dll
0x000007fefd150000 - 0x000007fefd168000 C:\Windows\system32\CRYPTSP.dll
0x000007fefce40000 - 0x000007fefce87000 C:\Windows\system32\rsaenh.dll
0x000007fefdb40000 - 0x000007fefdb5e000 C:\Windows\system32\USERENV.dll
0x000007fefd980000 - 0x000007fefd98f000 C:\Windows\system32\profapi.dll
0x000007fefd7d0000 - 0x000007fefd7df000 C:\Windows\system32\CRYPTBASE.dll
0x0000000073bf0000 - 0x0000000073bfb000 C:\Program Files\Java\jre7\bin\management.dll
0x000007fef9ca0000 - 0x000007fef9dc5000 C:\Windows\system32\DBGHELP.DLL
VM Arguments:
jvm_args: -Xbootclasspath/p:./jsr167.jar -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -Xms3072m -Xmx3072m -XXermSize=512m -XX:MaxPermSize=640m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSIncrementalMode -XX:MaxGCPauseMillis=500 -XX:+DoEscapeAnalysis -XX:+UseBiasedLocking -XX:+EliminateLocks -XXarallelGCThreads=10 -XXarallelCMSThreads=5 -XX:+AggressiveOpts -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=80 -XX:+CMSClassUnloadingEnabled -XX:+UseCompressedOops -XX:+UseFastAccessorMethods
java_command: l2p.gameserver.GameServer
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\MySQL\MySQL Server 5.5\bin
USERNAME=Администратор
OS=Windows_NT
PROCESSOR_IDENTIFIER=AMD64 Family 21 Model 1 Stepping 2, AuthenticAMD
--------------- S Y S T E M ---------------
OS: Windows NT 6.1 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (4 cores per cpu, 1 threads per core) family 21 model 1 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv
Memory: 4k page, physical 8351308k(1074792k free), swap 16700780k(11352492k free)
vm_info: Java HotSpot 64-Bit Server VM (23.21-b01) for windows-amd64 JRE (1.7.0_21-b11), built on Apr 4 2013 08:11:28 by "java_re" with unknown MS VC++:1600
time: Tue Aug 11 23:15:39 2015
elapsed time: 1866 seconds
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000002c4cda4, pid=2452, tid=908
#
# JRE version: 7.0_21-b11
# Java VM: Java HotSpot 64-Bit Server VM (23.21-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# J com.mysql.jdbc.ConnectionImpl.loadServerVariables()V
#
# Core dump written. Default location: [thread 2412 also had an error]
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x000000001129e800): JavaThread "HikariCP connection filler" daemon [_thread_in_Java, id=908, stack(0x0000000045cd0000,0x0000000045dd0000)]
siginfo: ExceptionCode=0xc0000005, writing address 0x00000000000004c6
Registers:
RAX=0x0000000720670be0, RBX=0x0000000720670bc8, RCX=0x0000000002b90000, RDX=0x0000000000000000
RSP=0x0000000045dce970, RBP=0x00000000e40ce169, RSI=0x0000000000000005, RDI=0x0000000003903385
R8 =0x0000000720670b30, R9 =0x0000000000000066, R10=0x0000000003903385, R11=0x0000000002b90000
R12=0x0000000000000000, R13=0x00000000025364df, R14=0x000000000253648d, R15=0x000000001129e800
RIP=0x0000000002c4cda4, EFLAGS=0x0000000000010213
Top of Stack: (sp=0x0000000045dce970)
0x0000000045dce970: 00000007d8748064 0000000045dce9b8
0x0000000045dce980: 00000007d8ae8340 0000000000000000
0x0000000045dce990: 0000000000000066 000000072066ffe8
0x0000000045dce9a0: 00000007206702a0 0000000720670ae8
0x0000000045dce9b0: 0000000764574b08 0000000764507c10
0x0000000045dce9c0: 00000007643e5178 00000007643e5898
0x0000000045dce9d0: 00000007627ae138 0000000763e02468
0x0000000045dce9e0: 00000007645698b0 0000000763b70470
0x0000000045dce9f0: 0000000763e02ac8 00000007643e8088
0x0000000045dcea00: 00000007643e7bd8 000000076456f800
0x0000000045dcea10: 0000000763b93540 000000075a1649e0
0x0000000045dcea20: 00000007643411f0 0000000763a4a500
0x0000000045dcea30: 00000007643e6be8 0000000762a15ce0
0x0000000045dcea40: 000000075a164b40 0000000762a15ad8
0x0000000045dcea50: 0000000763ce7c90 0000000045dceab0
0x0000000045dcea60: 00000000025363d3 000000072065e1c8
Instructions: (pc=0x0000000002c4cda4)
0x0000000002c4cd84: ef 09 b9 00 00 b9 02 44 88 24 39 45 89 53 24 4d
0x0000000002c4cd94: 8b d3 49 c1 ea 09 41 bb 00 00 b9 02 47 88 24 13
0x0000000002c4cda4: 41 89 a9 60 04 00 00 4d 8b d1 49 c1 ea 09 47 88
0x0000000002c4cdb4: 24 13 4c 8b 54 24 28 45 8b 5a 08 41 81 fb e7 ed
Register to memory mapping:
RAX=
[error occurred during error reporting (printing register info), id 0xc0000005]
Stack: [0x0000000045cd0000,0x0000000045dd0000], sp=0x0000000045dce970, free space=1018k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
J com.mysql.jdbc.ConnectionImpl.loadServerVariables()V
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
=>0x000000001129e800 JavaThread "HikariCP connection filler" daemon [_thread_in_Java, id=908, stack(0x0000000045cd0000,0x0000000045dd0000)]
0x000000001129d800 JavaThread "DestroyJavaVM" [_thread_blocked, id=4840, stack(0x0000000002430000,0x0000000002530000)]
0x000000001129d000 JavaThread "Thread-36" [_thread_in_Java, id=4892, stack(0x0000000045920000,0x0000000045a20000)]
0x000000001129c000 JavaThread "SelectorThread:7777" [_thread_in_Java, id=4912, stack(0x0000000045680000,0x0000000045780000)]
0x000000001129b800 JavaThread "ShutdownCounter" daemon [_thread_in_Java, id=4900, stack(0x00000000453f0000,0x00000000454f0000)]
0x000000001129a800 JavaThread "Thread-32" [_thread_in_Java, id=5116, stack(0x0000000045540000,0x0000000045640000)]
0x000000001129a000 JavaThread "ThreadPoolExecutor-8" [_thread_blocked, id=5000, stack(0x0000000045170000,0x0000000045270000)]
0x0000000011299000 JavaThread "ThreadPoolExecutor-7" [_thread_blocked, id=4996, stack(0x0000000045280000,0x0000000045380000)]
0x000000000f561000 JavaThread "ThreadPoolExecutor-6" [_thread_blocked, id=5040, stack(0x0000000044fd0000,0x00000000450d0000)]
0x000000000f560800 JavaThread "ThreadPoolExecutor-5" [_thread_blocked, id=2944, stack(0x0000000044db0000,0x0000000044eb0000)]
0x000000000f55f800 JavaThread "ThreadPoolExecutor-4" [_thread_blocked, id=2896, stack(0x0000000044c40000,0x0000000044d40000)]
0x000000000f55f000 JavaThread "ThreadPoolExecutor-3" [_thread_blocked, id=2484, stack(0x0000000044b10000,0x0000000044c10000)]
0x000000000f55e000 JavaThread "ThreadPoolExecutor-2" [_thread_blocked, id=664, stack(0x00000000449e0000,0x0000000044ae0000)]
0x000000000f55d800 JavaThread "ThreadPoolExecutor-1" [_thread_blocked, id=2940, stack(0x00000000448c0000,0x00000000449c0000)]
0x000000000f55c800 JavaThread "ScheduledThreadPool-16" [_thread_in_Java, id=1904, stack(0x0000000044730000,0x0000000044830000)]
0x000000000f55c000 JavaThread "ScheduledThreadPool-15" [_thread_in_Java, id=2668, stack(0x0000000044320000,0x0000000044420000)]
0x000000000f55b000 JavaThread "ScheduledThreadPool-14" [_thread_in_Java, id=2664, stack(0x0000000044620000,0x0000000044720000)]
0x000000000f55a800 JavaThread "ScheduledThreadPool-13" [_thread_in_Java, id=2396, stack(0x0000000044490000,0x0000000044590000)]
0x000000000f559800 JavaThread "ScheduledThreadPool-12" [_thread_in_Java, id=2156, stack(0x0000000043ec0000,0x0000000043fc0000)]
0x000000000f559000 JavaThread "ScheduledThreadPool-11" [_thread_in_Java, id=2000, stack(0x00000000441c0000,0x00000000442c0000)]
0x000000000f558000 JavaThread "ScheduledThreadPool-10" [_thread_in_Java, id=2584, stack(0x0000000043fd0000,0x00000000440d0000)]
0x000000000f557800 JavaThread "ScheduledThreadPool-9" [_thread_in_Java, id=2580, stack(0x0000000040b90000,0x0000000040c90000)]
0x000000000f556800 JavaThread "ScheduledThreadPool-8" [_thread_in_Java, id=1416, stack(0x0000000043cf0000,0x0000000043df0000)]
0x000000000f556000 JavaThread "ScheduledThreadPool-7" [_thread_in_Java, id=2524, stack(0x00000000407b0000,0x00000000408b0000)]
0x000000000f554800 JavaThread "ScheduledThreadPool-6" [_thread_in_Java, id=1664, stack(0x0000000040920000,0x0000000040a20000)]
0x000000000f555000 JavaThread "ScheduledThreadPool-5" [_thread_in_Java, id=2652, stack(0x0000000040a50000,0x0000000040b50000)]
0x000000000f553800 JavaThread "ScheduledThreadPool-4" [_thread_in_Java, id=1448, stack(0x0000000040690000,0x0000000040790000)]
0x000000000f553000 JavaThread "ScheduledThreadPool-3" [_thread_in_Java, id=2412, stack(0x0000000040550000,0x0000000040650000)]
0x000000000f552000 JavaThread "net.sf.ehcache.CacheManager@28c7a89f" daemon [_thread_blocked, id=1496, stack(0x0000000013a90000,0x0000000013b90000)]
0x000000000f5a9000 JavaThread "ScheduledThreadPool-2" [_thread_in_Java, id=1172, stack(0x0000000013bb0000,0x0000000013cb0000)]
0x0000000011fa0800 JavaThread "ScheduledThreadPool-1" [_thread_in_Java, id=2432, stack(0x00000000138e0000,0x00000000139e0000)]
0x0000000011244000 JavaThread "Hikari Housekeeping Timer (pool HikariPool-0)" daemon [_thread_in_Java, id=1680, stack(0x0000000012f30000,0x0000000013030000)]
0x000000000f383800 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=1144, stack(0x0000000010de0000,0x0000000010ee0000)]
0x000000000f1a9000 JavaThread "AsyncAppender-Dispatcher-Thread-4" daemon [_thread_blocked, id=1916, stack(0x0000000010020000,0x0000000010120000)]
0x000000000f1bc000 JavaThread "AsyncAppender-Dispatcher-Thread-3" daemon [_thread_blocked, id=2212, stack(0x0000000010a40000,0x0000000010b40000)]
0x000000000f242000 JavaThread "AsyncAppender-Dispatcher-Thread-2" daemon [_thread_blocked, id=2216, stack(0x0000000010860000,0x0000000010960000)]
0x000000000f248000 JavaThread "AsyncAppender-Dispatcher-Thread-1" daemon [_thread_blocked, id=1932, stack(0x0000000010640000,0x0000000010740000)]
0x000000000f027000 JavaThread "AsyncAppender-Dispatcher-Thread-0" daemon [_thread_blocked, id=1820, stack(0x0000000010180000,0x0000000010280000)]
0x000000000ee66800 JavaThread "Service Thread" daemon [_thread_blocked, id=2628, stack(0x000000000fd00000,0x000000000fe00000)]
0x000000000ee62000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=2636, stack(0x000000000f8c0000,0x000000000f9c0000)]
0x000000000ee5b800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=2608, stack(0x000000000fa10000,0x000000000fb10000)]
0x000000000ee5b000 JavaThread "Attach Listener" daemon [_thread_blocked, id=2640, stack(0x000000000f7b0000,0x000000000f8b0000)]
0x000000000ee5a000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1148, stack(0x000000000ea10000,0x000000000eb10000)]
0x000000000ee59000 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=2612, stack(0x000000000f610000,0x000000000f710000)]
0x000000000e892000 JavaThread "Finalizer" daemon [_thread_blocked, id=2408, stack(0x000000000ecf0000,0x000000000edf0000)]
0x000000000e88f000 JavaThread "Reference Handler" daemon [_thread_blocked, id=2456, stack(0x000000000eb50000,0x000000000ec50000)]
Other Threads:
0x000000000e887000 VMThread [stack: 0x000000000e8f0000,0x000000000e9f0000] [id=2448]
0x000000000ee82000 WatcherThread [stack: 0x000000000fef0000,0x000000000fff0000] [id=1184]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
par new generation total 766784K, used 137829K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 20% used [0x0000000718000000, 0x0000000720699460, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2111848K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38067K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Card table byte_map: [0x0000000006450000,0x0000000006ba0000] byte_map_base: 0x0000000002b90000
Polling page: 0x0000000000130000
Code Cache [0x0000000002530000, 0x0000000002c60000, 0x0000000005530000)
total_blobs=2651 nmethods=2139 adapters=460 free_code_cache=41973Kb largest_free_block=42842240
Compilation events (10 events):
Event: 1831.235 Thread 0x000000000ee62000 nmethod 2391 0x0000000002c3ad10 code [0x0000000002c3af20, 0x0000000002c3c260]
Event: 1831.238 Thread 0x000000000ee5b800 nmethod 2392 0x0000000002bd9ad0 code [0x0000000002bd9d20, 0x0000000002bdab20]
Event: 1831.300 Thread 0x000000000ee62000 2393 sun.nio.cs.ThreadLocalCoders$Cache::forName (111 bytes)
Event: 1831.320 Thread 0x000000000ee62000 nmethod 2393 0x0000000002c3d350 code [0x0000000002c3d580, 0x0000000002c3e880]
Event: 1831.324 Thread 0x000000000ee5b800 2394 java.util.ResourceBundle::getString (9 bytes)
Event: 1831.324 Thread 0x000000000ee62000 2395 java.util.ResourceBundle::getObject (82 bytes)
Event: 1831.336 Thread 0x000000000ee5b800 nmethod 2394 0x0000000002c3f490 code [0x0000000002c3f680, 0x0000000002c3fe60]
Event: 1831.336 Thread 0x000000000ee62000 nmethod 2395 0x00000000028e95d0 code [0x00000000028e97c0, 0x00000000028e9fc0]
Event: 1831.336 Thread 0x000000000ee62000 2396 ! com.mysql.jdbc.ConnectionImpl::loadServerVariables (715 bytes)
Event: 1831.462 Thread 0x000000000ee62000 nmethod 2396 0x0000000002c4b890 code [0x0000000002c4bf00, 0x0000000002c50410]
GC Heap History (10 events):
Event: 48.322 GC heap before
{Heap before GC invocations=5 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1167983K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28067K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 48.757 GC heap after
Heap after GC invocations=6 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1259431K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 28067K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 55.902 GC heap before
{Heap before GC invocations=6 (full 3):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1257392K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30078K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 56.302 GC heap after
Heap after GC invocations=7 (full 3):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1370348K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 30078K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 60.175 GC heap before
{Heap before GC invocations=7 (full 4):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x0000000746cd0000, 0x000000074c000000, 0x000000074c000000)
to space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
concurrent mark-sweep generation total 2293760K, used 1370348K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31219K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 61.514 GC heap after
Heap after GC invocations=8 (full 4):
par new generation total 766784K, used 85184K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1876795K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 31219K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 553.395 GC heap before
{Heap before GC invocations=8 (full 4):
par new generation total 766784K, used 766784K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 100% used [0x00000007419a0000, 0x0000000746cd0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 1875921K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 37703K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 558.157 GC heap after
Heap after GC invocations=9 (full 5):
par new generation total 766784K, used 0K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2109632K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 37689K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Event: 1627.849 GC heap before
{Heap before GC invocations=9 (full 6):
par new generation total 766784K, used 681600K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 100% used [0x0000000718000000, 0x00000007419a0000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2104804K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38052K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
Event: 1632.470 GC heap after
Heap after GC invocations=10 (full 7):
par new generation total 766784K, used 0K [0x0000000718000000, 0x000000074c000000, 0x000000074c000000)
eden space 681600K, 0% used [0x0000000718000000, 0x0000000718000000, 0x00000007419a0000)
from space 85184K, 0% used [0x00000007419a0000, 0x00000007419a0000, 0x0000000746cd0000)
to space 85184K, 0% used [0x0000000746cd0000, 0x0000000746cd0000, 0x000000074c000000)
concurrent mark-sweep generation total 2293760K, used 2111848K [0x000000074c000000, 0x00000007d8000000, 0x00000007d8000000)
concurrent-mark-sweep perm gen total 524288K, used 38030K [0x00000007d8000000, 0x00000007f8000000, 0x0000000800000000)
}
Deoptimization events (10 events):
Event: 1742.530 Thread 0x000000000f55d800 Uncommon trap -34 fr.pc 0x0000000002b4de30
Event: 1742.530 Thread 0x000000000f55d800 Uncommon trap -34 fr.pc 0x0000000002b4de30
Event: 1744.411 Thread 0x000000000f55e000 Uncommon trap -34 fr.pc 0x0000000002c29508
Event: 1744.412 Thread 0x000000000f55e000 Uncommon trap -34 fr.pc 0x0000000002c13a60
Event: 1749.902 Thread 0x000000000f55c800 Uncommon trap 20 fr.pc 0x0000000002965d14
Event: 1750.783 Thread 0x000000000f558000 Uncommon trap -34 fr.pc 0x000000000269bff0
Event: 1765.691 Thread 0x000000000f55f000 Uncommon trap -34 fr.pc 0x0000000002c29508
Event: 1831.177 Thread 0x000000001129e800 Uncommon trap -34 fr.pc 0x00000000026add4c
Event: 1831.177 Thread 0x000000001129e800 Uncommon trap -34 fr.pc 0x0000000002adb6d0
Event: 1831.177 Thread 0x000000001129e800 Uncommon trap -34 fr.pc 0x000000000261689c
Internal exceptions (10 events):
Event: 1544.322 Thread 0x000000001129c000 Threw 0x000000073ee8f458 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1554.178 Thread 0x000000000f55f000 Threw 0x000000073d22b278 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1564.842 Thread 0x000000001129a000 Threw 0x000000073f6c10a0 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1651.176 Thread 0x0000000011244000 Threw 0x0000000719a7e728 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1651.178 Thread 0x000000001129e800 Implicit null exception at 0x00000000027c7622 to 0x00000000027c79c5
Event: 1682.858 Thread 0x000000000f55d800 Threw 0x000000071a3e8f00 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1737.090 Thread 0x0000000011299000 Threw 0x000000071b3d1d68 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1742.529 Thread 0x000000000f55d800 Threw 0x000000071c1235a8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1752.528 Thread 0x000000000f55e000 Threw 0x000000071cc553c8 at C:\jdk7u2_64p\jdk7u21\hotspot\src\share\vm\prims\jvm.cpp:1166
Event: 1831.464 Thread 0x000000001129e800 Implicit null exception at 0x0000000002c4cda4 to 0x0000000000000000
Events (10 events):
Event: 1823.249 Executing VM operation: RevokeBias
Event: 1823.250 Executing VM operation: RevokeBias done
Event: 1831.176 Thread 0x000000001129e800 Thread added: 0x000000001129e800
Event: 1831.177 Thread 0x000000001129e800 DEOPT PACKING pc=0x00000000026add4c sp=0x0000000045dcdfe0
Event: 1831.177 Thread 0x000000001129e800 DEOPT UNPACKING pc=0x0000000002569164 sp=0x0000000045dcdf30 mode 2
Event: 1831.177 Thread 0x000000001129e800 DEOPT PACKING pc=0x0000000002adb6d0 sp=0x0000000045dce650
Event: 1831.177 Thread 0x000000001129e800 DEOPT UNPACKING pc=0x0000000002569164 sp=0x0000000045dce608 mode 2
Event: 1831.177 Thread 0x000000001129e800 DEOPT PACKING pc=0x000000000261689c sp=0x0000000045dce720
Event: 1831.177 Thread 0x000000001129e800 DEOPT UNPACKING pc=0x0000000002569164 sp=0x0000000045dce5e0 mode 2
Event: 1831.235 Thread 0x000000000ee62000 flushing nmethod 0x00000000028e95d0
Dynamic libraries:
0x000000013fc90000 - 0x000000013fcc3000 C:\Windows\system32\java.exe
0x0000000077bc0000 - 0x0000000077d69000 C:\Windows\SYSTEM32\ntdll.dll
0x00000000779a0000 - 0x0000000077abf000 C:\Windows\system32\kernel32.dll
0x000007fefd9c0000 - 0x000007fefda2c000 C:\Windows\system32\KERNELBASE.dll
0x000007feff5b0000 - 0x000007feff68b000 C:\Windows\system32\ADVAPI32.dll
0x000007fefdd40000 - 0x000007fefdddf000 C:\Windows\system32\msvcrt.dll
0x000007fefdde0000 - 0x000007fefddff000 C:\Windows\SYSTEM32\sechost.dll
0x000007feff7e0000 - 0x000007feff90d000 C:\Windows\system32\RPCRT4.dll
0x0000000077ac0000 - 0x0000000077bba000 C:\Windows\system32\USER32.dll
0x000007feff9d0000 - 0x000007feffa37000 C:\Windows\system32\GDI32.dll
0x000007fefdd30000 - 0x000007fefdd3e000 C:\Windows\system32\LPK.dll
0x000007feffac0000 - 0x000007feffb89000 C:\Windows\system32\USP10.dll
0x000007fefc370000 - 0x000007fefc564000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll
0x000007fefebf0000 - 0x000007fefec61000 C:\Windows\system32\SHLWAPI.dll
0x000007feff7b0000 - 0x000007feff7de000 C:\Windows\system32\IMM32.DLL
0x000007feff690000 - 0x000007feff799000 C:\Windows\system32\MSCTF.dll
0x00000000738b0000 - 0x0000000073981000 C:\Program Files\Java\jre7\bin\msvcr100.dll
0x0000000073180000 - 0x00000000738a1000 C:\Program Files\Java\jre7\bin\server\jvm.dll
0x000007fef6bb0000 - 0x000007fef6bb9000 C:\Windows\system32\WSOCK32.dll
0x000007feff560000 - 0x000007feff5ad000 C:\Windows\system32\WS2_32.dll
0x000007feff7a0000 - 0x000007feff7a8000 C:\Windows\system32\NSI.dll
0x000007fefa520000 - 0x000007fefa55b000 C:\Windows\system32\WINMM.dll
0x0000000077d80000 - 0x0000000077d87000 C:\Windows\system32\PSAPI.DLL
0x00000000741e0000 - 0x00000000741ef000 C:\Program Files\Java\jre7\bin\verify.dll
0x00000000741b0000 - 0x00000000741d8000 C:\Program Files\Java\jre7\bin\java.dll
0x0000000074190000 - 0x00000000741a5000 C:\Program Files\Java\jre7\bin\zip.dll
0x0000000180000000 - 0x000000018001d000 C:\Epilogue\gameserver\jsr16764.dll
0x0000000073c50000 - 0x0000000073c69000 C:\Program Files\Java\jre7\bin\net.dll
0x000007fefd0a0000 - 0x000007fefd0f5000 C:\Windows\system32\mswsock.dll
0x000007fefd370000 - 0x000007fefd377000 C:\Windows\System32\wship6.dll
0x0000000073c70000 - 0x0000000073c81000 C:\Program Files\Java\jre7\bin\nio.dll
0x000007fefcb00000 - 0x000007fefcb07000 C:\Windows\System32\wshtcpip.dll
0x000007fefc280000 - 0x000007fefc295000 C:\Windows\system32\NLAapi.dll
0x000007fef9bf0000 - 0x000007fef9c05000 C:\Windows\system32\napinsp.dll
0x000007fefcf30000 - 0x000007fefcf8b000 C:\Windows\system32\DNSAPI.dll
0x000007fef9be0000 - 0x000007fef9beb000 C:\Windows\System32\winrnr.dll
0x000007fefbd90000 - 0x000007fefbdb7000 C:\Windows\system32\IPHLPAPI.DLL
0x000007fefbd00000 - 0x000007fefbd0b000 C:\Windows\system32\WINNSI.DLL
0x000007fefbbf0000 - 0x000007fefbc43000 C:\Windows\System32\fwpuclnt.dll
0x000007fef9350000 - 0x000007fef9358000 C:\Windows\system32\rasadhlp.dll
0x000007fefd150000 - 0x000007fefd168000 C:\Windows\system32\CRYPTSP.dll
0x000007fefce40000 - 0x000007fefce87000 C:\Windows\system32\rsaenh.dll
0x000007fefdb40000 - 0x000007fefdb5e000 C:\Windows\system32\USERENV.dll
0x000007fefd980000 - 0x000007fefd98f000 C:\Windows\system32\profapi.dll
0x000007fefd7d0000 - 0x000007fefd7df000 C:\Windows\system32\CRYPTBASE.dll
0x0000000073bf0000 - 0x0000000073bfb000 C:\Program Files\Java\jre7\bin\management.dll
0x000007fef9ca0000 - 0x000007fef9dc5000 C:\Windows\system32\DBGHELP.DLL
VM Arguments:
jvm_args: -Xbootclasspath/p:./jsr167.jar -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -Xms3072m -Xmx3072m -XXermSize=512m -XX:MaxPermSize=640m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSIncrementalMode -XX:MaxGCPauseMillis=500 -XX:+DoEscapeAnalysis -XX:+UseBiasedLocking -XX:+EliminateLocks -XXarallelGCThreads=10 -XXarallelCMSThreads=5 -XX:+AggressiveOpts -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=80 -XX:+CMSClassUnloadingEnabled -XX:+UseCompressedOops -XX:+UseFastAccessorMethods
java_command: l2p.gameserver.GameServer
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\MySQL\MySQL Server 5.5\bin
USERNAME=Администратор
OS=Windows_NT
PROCESSOR_IDENTIFIER=AMD64 Family 21 Model 1 Stepping 2, AuthenticAMD
--------------- S Y S T E M ---------------
OS: Windows NT 6.1 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (4 cores per cpu, 1 threads per core) family 21 model 1 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv
Memory: 4k page, physical 8351308k(1074792k free), swap 16700780k(11352492k free)
vm_info: Java HotSpot 64-Bit Server VM (23.21-b01) for windows-amd64 JRE (1.7.0_21-b11), built on Apr 4 2013 08:11:28 by "java_re" with unknown MS VC++:1600
time: Tue Aug 11 23:15:39 2015
elapsed time: 1866 seconds
[SPOILER="3"]#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000072a1f258, pid=2580, tid=1832
#
# JRE version: 7.0_21-b11
# Java VM: Java HotSpot 64-Bit Server VM (23.21-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V [jvm.dll+0x5f258]
#
# Core dump written. Default location: C:\Epilogue\gameserver\hs_err_pid2580.mdmp
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x000000000ed4a000): JavaThread "C2 CompilerThread0" daemon [_thread_in_vm, id=1832, stack(0x000000000f880000,0x000000000f980000)]
siginfo: ExceptionCode=0xc0000005, reading address 0xffffffffffffffff
Registers:
RAX=0xffffffffffffffff, RBX=0x0800000000000000, RCX=0x0000000072bda0fc, RDX=0x0000000000000048
RSP=0x000000000f97df90, RBP=0x000000000000f000, RSI=0x0000000000000001, RDI=0x0000000002bd833a
R8 =0x000000000f97df01, R9 =0x00000000729c0000, R10=0x0000000000000000, R11=0x0000000002bd7ae3
R12=0x0000000072ec2a68, R13=0x0000000000000000, R14=0x0000000000001000, R15=0x0000000000000000
RIP=0x0000000072a1f258, EFLAGS=0x0000000000010213
Top of Stack: (sp=0x000000000f97df90)
0x000000000f97df90: 0000000000000...