Matlab Crash - Java Virtual Machine

3 views (last 30 days)
Martin
Martin on 3 May 2012
Dear Community,
I use Matlab R2009b
The following code works fine:
myFolder = 'C:\Entacher\12_MATLAB\BTS\MATLAB\AG\';
filepattern = fullfile(myFolder, '*.txt');
files = dir(filepattern);
A=zeros(500,3*length(files));
for i=1:1:length(files);
myFolder,files(i).name;
ph=[myFolder,ans];
DELIMITER = '\t';
HEADERLINES = 28;
B = importdata(ph, DELIMITER, HEADERLINES);
bdata = B.data;
A(1:1:size(bdata,1),3*i-2:1:3*i) = bdata;
A(A == 0) = NaN;
end
for i=1:1:28;
A(:,3*i)=A(:,3*i)-A(1,3*i);
end
maximAG=zeros(28,3);
maximAG(:,1)=1:1:28;
maximAG(1:1:4,2)=0;
maximAG(5:1:8,2)=15;
maximAG(9:1:12,2)=30;
maximAG(13:1:16,2)=45;
maximAG(17:1:20,2)=60;
maximAG(21:1:24,2)=75;
maximAG(25:1:28,2)=90;
for i=1:1:28;
maximAG(i,3)=max(A(:,3*i-2));
end
However, changing the directory will cause Matlab to crash. The other folder (KGS instead of AG) contains exactly the same type of txt-files, it's just a different measurement series.
This is the code where Matlab fails (it fails within in the first loop, only on my machine):
myFolder = 'C:\Entacher\12_MATLAB\BTS\MATLAB\KGS\';
filepattern = fullfile(myFolder, '*.txt');
files = dir(filepattern);
A=zeros(500,3*length(files));
for i=1:1:length(files);
myFolder,files(i).name;
ph=[myFolder,ans];
DELIMITER = '\t';
HEADERLINES = 28;
B = importdata(ph, DELIMITER, HEADERLINES);
bdata = B.data;
A(1:1:size(bdata,1),3*i-2:1:3*i) = bdata;
A(A == 0) = NaN;
end
for i=1:1:28;
A(:,3*i)=A(:,3*i)-A(1,3*i);
end
maximKGS=zeros(28,3);
maximKGS(:,1)=1:1:28; %Laufnummer
maximKGS(1:1:4,2)=0; %Schieferungswinkel
maximKGS(5:1:8,2)=15;
maximKGS(9:1:12,2)=30;
maximKGS(13:1:16,2)=45;
maximKGS(17:1:20,2)=60;
maximKGS(21:1:24,2)=75;
maximKGS(25:1:28,2)=90;
for i=1:1:28;
maximKGS(i,3)=max(A(:,3*i-2));
end
The code works perfectly fine on other PCs, its only crashing on my machine!
This is the errorlog:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000077200895, pid=5692, tid=6052
#
# JRE version: 6.0_32-b05
# Java VM: Java HotSpot(TM) 64-Bit Server VM (20.7-b02 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [ntdll.dll+0x50895]
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x0000000001888800): JavaThread "main" [_thread_in_Java, id=6052, stack(0x0000000000030000,0x0000000001030000)]
siginfo: ExceptionCode=0xc0000005, reading address 0xffffffffffffffff
Registers:
RAX=0x000000000102be08, RBX=0x0000000000000002, RCX=0x000000000102bed8, RDX=0x000000000102be48
RSP=0x000000000102bdf8, RBP=0x000007feef506350, RSI=0x0000000000000020, RDI=0x0000000000000000
R8 =0x000000000101a000, R9 =0x0000000000000003, R10=0x00000000fd1d70c0, R11=0x00000000000115ec
R12=0x0000000000000000, R13=0x0000000000000040, R14=0x0000000000000003, R15=0x0000000001888800
RIP=0x0000000077200895, EFLAGS=0x0000000000010202
Top of Stack: (sp=0x000000000102bdf8)
0x000000000102bdf8: 0000000000000202 00000000771bb239
0x000000000102be08: 000007fffffde000 000000000db56fba
0x000000000102be18: 000000000db56f50 0000000000000000
0x000000000102be28: 0000000000000000 000000000102c610
0x000000000102be38: 000000001a630a40 000000001a630b80
0x000000000102be48: 0000000001030000 000000000101a000
0x000000000102be58: 000000000000002b 000000001b952b58
0x000000000102be68: 000000000102c640 000000000dba38b0
0x000000000102be78: 000000000dba3190 0000000000000000
0x000000000102be88: 00000000fd1d70c0 000000000102c640
0x000000000102be98: 000000000102c680 000000000db25a0e
0x000000000102bea8: 000000000db24ed0 0000000000000000
0x000000000102beb8: 000000000102c6d8 000000000102c680
0x000000000102bec8: 000000006d899232 000000000102c640
0x000000000102bed8: 000000000dba38b0 000000000dba3190
0x000000000102bee8: 0000000000000000 00000000fd1d70c0
Instructions: (pc=0x0000000077200895)
0x0000000077200875: d0 00 00 00 4c 89 a1 d8 00 00 00 4c 89 a9 e0 00
0x0000000077200885: 00 00 4c 89 b1 e8 00 00 00 4c 89 b9 f0 00 00 00
0x0000000077200895: 0f ae 81 00 01 00 00 0f 29 81 a0 01 00 00 0f 29
0x00000000772008a5: 89 b0 01 00 00 0f 29 91 c0 01 00 00 0f 29 99 d0
Register to memory mapping:
RAX=0x000000000102be08 is pointing into the stack for thread: 0x0000000001888800
RBX=0x0000000000000002 is an unknown value
RCX=0x000000000102bed8 is pointing into the stack for thread: 0x0000000001888800
RDX=0x000000000102be48 is pointing into the stack for thread: 0x0000000001888800
RSP=0x000000000102bdf8 is pointing into the stack for thread: 0x0000000001888800
RBP=0x000007feef506350 is an unknown value
RSI=0x0000000000000020 is an unknown value
RDI=0x0000000000000000 is an unknown value
R8 =0x000000000101a000 is pointing into the stack for thread: 0x0000000001888800
R9 =0x0000000000000003 is an unknown value
R10=0x00000000fd1d70c0 is an oop
sun.security.jca.ProviderConfig
- klass: 'sun/security/jca/ProviderConfig'
R11=0x00000000000115ec is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x0000000000000040 is an unknown value
R14=0x0000000000000003 is an unknown value
R15=0x0000000001888800 is a thread
Stack: [0x0000000000030000,0x0000000001030000], sp=0x000000000102bdf8, free space=16367k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [ntdll.dll+0x50895]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
v blob 0x000000000db5707f
j java.util.ArrayList.indexOf(Ljava/lang/Object;)I+44
j java.util.ArrayList.contains(Ljava/lang/Object;)Z+2
j sun.security.jca.ProviderList.<init>()V+161
j sun.security.jca.ProviderList.<init>(Lsun/security/jca/ProviderList$1;)V+1
j sun.security.jca.ProviderList$2.run()Ljava/lang/Object;+5
v ~StubRoutines::call_stub
j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;+0
j sun.security.jca.ProviderList.fromSecurityProperties()Lsun/security/jca/ProviderList;+7
j sun.security.jca.Providers.<clinit>()V+16
v ~StubRoutines::call_stub
j java.security.SecureRandom.getPrngAlgorithm()Ljava/lang/String;+0
j java.security.SecureRandom.getDefaultPRNG(Z[B)V+0
j java.security.SecureRandom.<init>()V+23
j java.io.File$LazyInitialization.<clinit>()V+4
v ~StubRoutines::call_stub
j java.io.File.createTempFile(Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File;+45
j javax.imageio.stream.FileCacheImageInputStream.<init>(Ljava/io/InputStream;Ljava/io/File;)V+69
j com.sun.imageio.spi.InputStreamImageInputStreamSpi.createInputStreamInstance(Ljava/lang/Object;ZLjava/io/File;)Ljavax/imageio/stream/ImageInputStream;+24
j javax.imageio.ImageIO.createImageInputStream(Ljava/lang/Object;)Ljavax/imageio/stream/ImageInputStream;+85
j javax.imageio.ImageIO.read(Ljava/io/InputStream;)Ljava/awt/image/BufferedImage;+15
j com.jidesoft.icons.IconsFactory.createImageIconWithException(Ljava/lang/Class;Ljava/lang/String;)Ljavax/swing/ImageIcon;+47
j com.jidesoft.icons.IconsFactory.createImageIcon(Ljava/lang/Class;Ljava/lang/String;)Ljavax/swing/ImageIcon;+2
j com.jidesoft.icons.IconsFactory.getImageIcon(Ljava/lang/Class;Ljava/lang/String;)Ljavax/swing/ImageIcon;+51
j com.jidesoft.plaf.vsnet.VsnetWindowsUtils.initComponentDefaults(Ljavax/swing/UIDefaults;)V+559
j com.jidesoft.plaf.LookAndFeelFactory.installJideExtension(Ljavax/swing/UIDefaults;Ljavax/swing/LookAndFeel;I)V+1005
j com.jidesoft.plaf.LookAndFeelFactory.installJideExtension(I)V+7
j com.jidesoft.plaf.LookAndFeelFactory.installJideExtension()V+3
j com.mathworks.mwswing.MJUtilities.initJIDE()V+23
j com.mathworks.mwswing.MJStartup.init()V+130
j com.mathworks.mwswing.MJStartup.<clinit>()V+17
v ~StubRoutines::call_stub
j java.lang.Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;+0
j java.lang.Class.forName(Ljava/lang/String;)Ljava/lang/Class;+5
j com.mathworks.util.PostVMInit$StartupClass.init(ZZ)V+28
j com.mathworks.util.PostVMInit.perform(ZZ)V+26
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x000000001af20000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=6108, stack(0x000000001c040000,0x000000001c0c0000)]
0x00000000159e7000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=4520, stack(0x000000001bf40000,0x000000001bfc0000)]
0x000000001a5c9000 JavaThread "Timer-0" [_thread_blocked, id=1072, stack(0x000000001ae00000,0x000000001ae80000)]
0x000000001a2e9000 JavaThread "JMI Unnamed Thread" [_thread_in_native, id=1080, stack(0x0000000008520000,0x0000000009520000)]
0x0000000015a75800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5876, stack(0x0000000019180000,0x0000000019200000)]
0x0000000015a69800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=4388, stack(0x0000000018180000,0x0000000019180000)]
0x0000000015a67800 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=3988, stack(0x0000000017180000,0x0000000018180000)]
0x0000000015a5c800 JavaThread "Attach Listener" daemon [_thread_blocked, id=3256, stack(0x0000000017100000,0x0000000017180000)]
0x000000001596b000 JavaThread "Finalizer" daemon [_thread_blocked, id=3732, stack(0x0000000017080000,0x0000000017100000)]
0x0000000015964800 JavaThread "Reference Handler" daemon [_thread_blocked, id=3972, stack(0x00000000095d0000,0x0000000009650000)]
=>0x0000000001888800 JavaThread "main" [_thread_in_Java, id=6052, stack(0x0000000000030000,0x0000000001030000)]
Other Threads:
0x0000000015951000 VMThread [stack: 0x0000000016080000,0x0000000017080000] [id=5820]
0x0000000015abc000 WatcherThread [stack: 0x0000000019200000,0x000000001a200000] [id=1388]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
PSYoungGen total 14336K, used 4552K [0x00000000fcf00000, 0x00000000fdf00000, 0x0000000100000000)
eden space 12288K, 23% used [0x00000000fcf00000,0x00000000fd1d9808,0x00000000fdb00000)
from space 2048K, 79% used [0x00000000fdb00000,0x00000000fdc988a8,0x00000000fdd00000)
to space 2048K, 0% used [0x00000000fdd00000,0x00000000fdd00000,0x00000000fdf00000)
PSOldGen total 49152K, used 0K [0x00000000f3c00000, 0x00000000f6c00000, 0x00000000fcf00000)
object space 49152K, 0% used [0x00000000f3c00000,0x00000000f3c00000,0x00000000f6c00000)
PSPermGen total 32768K, used 10273K [0x00000000ebc00000, 0x00000000edc00000, 0x00000000f3c00000)
object space 32768K, 31% used [0x00000000ebc00000,0x00000000ec608700,0x00000000edc00000)
Code Cache [0x000000000db20000, 0x000000000dd90000, 0x0000000010b20000)
total_blobs=394 nmethods=79 adapters=269 free_code_cache=49667392 largest_free_block=9216
Dynamic libraries:
0x0000000140000000 - 0x0000000140038000 C:\Program Files\MATLAB\R2009b\bin\win64\MATLAB.exe
0x00000000771b0000 - 0x0000000077359000 C:\Windows\SYSTEM32\ntdll.dll
0x0000000077090000 - 0x00000000771af000 C:\Windows\system32\kernel32.dll
0x000007fefd420000 - 0x000007fefd48c000 C:\Windows\system32\KERNELBASE.dll
0x000000007cdb0000 - 0x000000007ceb9000 C:\Program Files\MATLAB\R2009b\bin\win64\libut.dll
0x000007fefdf60000 - 0x000007fefdf79000 C:\Windows\system32\imagehlp.dll
0x000007feff220000 - 0x000007feff2bf000 C:\Windows\system32\msvcrt.dll
0x000007fefde80000 - 0x000007fefdf5b000 C:\Windows\system32\ADVAPI32.dll
0x000007fefdf80000 - 0x000007fefdf9f000 C:\Windows\SYSTEM32\sechost.dll
0x000007feff0c0000 - 0x000007feff1ed000 C:\Windows\system32\RPCRT4.dll
0x0000000077380000 - 0x0000000077387000 C:\Windows\system32\PSAPI.DLL
0x000000007d620000 - 0x000000007d648000 C:\Program Files\MATLAB\R2009b\bin\win64\LIBEXPAT.dll
0x0000000073a90000 - 0x0000000073b59000 C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_88e41e092fab0294\MSVCR80.dll
0x000000007d320000 - 0x000000007d44c000 C:\Program Files\MATLAB\R2009b\bin\win64\icuuc40.dll
0x000000007c760000 - 0x000000007c763000 C:\Program Files\MATLAB\R2009b\bin\win64\icudt40.dll
0x000000007c770000 - 0x000000007c780000 C:\Program Files\MATLAB\R2009b\bin\win64\icuio40.dll
0x000000007ca60000 - 0x000000007cbb3000 C:\Program Files\MATLAB\R2009b\bin\win64\icuin40.dll
0x0000000068920000 - 0x0000000068a29000 C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_88e41e092fab0294\MSVCP80.dll
0x0000000076f90000 - 0x000000007708a000 C:\Windows\system32\USER32.dll
0x000007fefde10000 - 0x000007fefde77000 C:\Windows\system32\GDI32.dll
0x000007fefd870000 - 0x000007fefd87e000 C:\Windows\system32\LPK.dll
0x000007fefd7a0000 - 0x000007fefd869000 C:\Windows\system32\USP10.dll
0x0000000078820000 - 0x0000000078890000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwfl.dll
0x000000007e820000 - 0x000000007e82f000 C:\Program Files\MATLAB\R2009b\bin\win64\boost_date_time-vc80-mt-1_36.dll
0x000000007e800000 - 0x000000007e816000 C:\Program Files\MATLAB\R2009b\bin\win64\boost_signals-vc80-mt-1_36.dll
0x000000007dae0000 - 0x000000007dae9000 C:\Program Files\MATLAB\R2009b\bin\win64\boost_system-vc80-mt-1_36.dll
0x000000007c740000 - 0x000000007c751000 C:\Program Files\MATLAB\R2009b\bin\win64\boost_thread-vc80-mt-1_36.dll
0x000000007cf70000 - 0x000000007d1e1000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwservices.dll
0x000000007cec0000 - 0x000000007cf6f000 C:\Program Files\MATLAB\R2009b\bin\win64\libmx.dll
0x0000000079070000 - 0x0000000079087000 C:\Program Files\MATLAB\R2009b\bin\win64\zlib1.dll
0x000000007d1f0000 - 0x000000007d318000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwmathutil.dll
0x000000007a660000 - 0x000000007a6b8000 C:\Program Files\MATLAB\R2009b\bin\win64\mpath.dll
0x000000007d650000 - 0x000000007d6a1000 C:\Program Files\MATLAB\R2009b\bin\win64\mlutil.dll
0x00000000787b0000 - 0x00000000787ee000 C:\Program Files\MATLAB\R2009b\bin\win64\tbb.dll
0x000007fef9b60000 - 0x000007fef9c00000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_a4d6a923711520a9\COMCTL32.dll
0x000007feff3a0000 - 0x000007feff437000 C:\Windows\system32\comdlg32.dll
0x000007feff440000 - 0x000007feff4b1000 C:\Windows\system32\SHLWAPI.dll
0x000007fefdfa0000 - 0x000007fefed28000 C:\Windows\system32\SHELL32.dll
0x000007fefb100000 - 0x000007fefb116000 C:\Windows\system32\NETAPI32.dll
0x000007fefb0f0000 - 0x000007fefb0fc000 C:\Windows\system32\netutils.dll
0x000007fefcc70000 - 0x000007fefcc93000 C:\Windows\system32\srvcli.dll
0x000007fefb000000 - 0x000007fefb015000 C:\Windows\system32\wkscli.dll
0x000007fefee60000 - 0x000007fefeead000 C:\Windows\system32\WS2_32.dll
0x000007fefd790000 - 0x000007fefd798000 C:\Windows\system32\NSI.dll
0x000000007eaa0000 - 0x000000007eabd000 C:\Program Files\MATLAB\R2009b\bin\win64\boost_filesystem-vc80-mt-1_36.dll
0x000000007acf0000 - 0x000000007ad87000 C:\Program Files\MATLAB\R2009b\bin\win64\mcr.dll
0x000000007c780000 - 0x000000007c80c000 C:\Program Files\MATLAB\R2009b\bin\win64\iqm.dll
0x000000007b440000 - 0x000000007bd40000 C:\Program Files\MATLAB\R2009b\bin\win64\m_interpreter.dll
0x000000007c830000 - 0x000000007c840000 C:\Program Files\MATLAB\R2009b\bin\win64\libmex.dll
0x000000007ab60000 - 0x000000007ac0b000 C:\Program Files\MATLAB\R2009b\bin\win64\m_dispatcher.dll
0x000000007e720000 - 0x000000007e7ac000 C:\Program Files\MATLAB\R2009b\bin\win64\xmlcore.dll
0x000000007a020000 - 0x000000007a2b5000 C:\Program Files\MATLAB\R2009b\bin\win64\xerces-c_2_7.dll
0x000000007e980000 - 0x000000007ea71000 C:\Program Files\MATLAB\R2009b\bin\win64\boost_regex-vc80-mt-1_36.dll
0x000000007aa00000 - 0x000000007aa91000 C:\Program Files\MATLAB\R2009b\bin\win64\profiler.dll
0x000000007c8b0000 - 0x000000007c8da000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwmathrng.dll
0x0000000078fd0000 - 0x0000000078fea000 C:\Program Files\MATLAB\R2009b\bin\win64\m_pcodeio.dll
0x000000007a610000 - 0x000000007a65d000 C:\Program Files\MATLAB\R2009b\bin\win64\m_ir.dll
0x000000007ae40000 - 0x000000007b433000 C:\Program Files\MATLAB\R2009b\bin\win64\m_parser.dll
0x000000007c810000 - 0x000000007c824000 C:\Program Files\MATLAB\R2009b\bin\win64\ir_xfmr.dll
0x0000000078890000 - 0x0000000078b39000 C:\Program Files\MATLAB\R2009b\bin\win64\mcos.dll
0x000000007c8f0000 - 0x000000007c8fc000 C:\Program Files\MATLAB\R2009b\bin\win64\mtok.dll
0x0000000078fb0000 - 0x0000000078fd0000 C:\Program Files\MATLAB\R2009b\bin\win64\m_pcodegen.dll
0x000007fef29f0000 - 0x000007fef2b15000 C:\Windows\system32\dbghelp.dll
0x0000000078ec0000 - 0x0000000078ee4000 C:\Program Files\MATLAB\R2009b\bin\win64\bridge.dll
0x000000007c3d0000 - 0x000000007c490000 C:\Program Files\MATLAB\R2009b\bin\win64\udd.dll
0x000000007d450000 - 0x000000007d59d000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwgui.dll
0x00000000790e0000 - 0x000000007980b000 C:\Program Files\MATLAB\R2009b\bin\win64\hg.dll
0x0000000078ef0000 - 0x0000000078f2c000 C:\Program Files\MATLAB\R2009b\bin\win64\libmat.dll
0x000000007cbc0000 - 0x000000007cdae000 C:\Program Files\MATLAB\R2009b\bin\win64\libhdf5.dll
0x000000007a550000 - 0x000000007a5af000 C:\Program Files\MATLAB\R2009b\bin\win64\jmi.dll
0x000000007a490000 - 0x000000007a4d0000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwhardcopy.dll
0x000000007a5b0000 - 0x000000007a60a000 C:\Program Files\MATLAB\R2009b\bin\win64\libuij.dll
0x0000000078680000 - 0x00000000787ab000 C:\Program Files\MATLAB\R2009b\bin\win64\hgdatatypes.dll
0x0000000078630000 - 0x000000007867b000 C:\Program Files\MATLAB\R2009b\bin\win64\hgutils.dll
0x0000000078f30000 - 0x0000000078fa5000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwlapack.dll
0x000000007c850000 - 0x000000007c863000 C:\Program Files\MATLAB\R2009b\bin\win64\libmwbinder.dll
0x000000007c490000 - 0x000000007c73e000 C:\Program Files\MATLAB\R2009b\bin\win64\uiw.dll
0x000000007c930000 - 0x000000007c93a000 C:\Program Files\MATLAB\R2009b\bin\win64\uinone.dll
0x0000000068780000 - 0x000000006891c000 C:\Windows\WinSxS\amd64_microsoft.vc80.mfc_1fc8b3b9a1e18e3b_8.0.50727.6195_none_8448b2bd328df189\MFC80.DLL
0x000007fef9ae0000 - 0x000007fef9b51000 C:\Windows\system32\WINSPOOL.DRV
0x000007fefeeb0000 - 0x000007feff0b3000 C:\Windows\system32\ole32.dll
0x000007fefd6b0000 - 0x000007fefd787000 C:\Windows\system32\OLEAUT32.dll
0x000000007ad90000 - 0x000000007ae3f000 C:\Program Files\MATLAB\R2009b\bin\win64\udd_mi.dll
0x0000000078ff0000 - 0x0000000079008000 C:\Program Files\MATLAB\R2009b\bin\win64\mwoles05.DLL
0x000000007a990000 - 0x000000007a9fa000 C:\Program Files\MATLAB\R2009b\bin\win64\comcli.dll
0x0000000068b20000 - 0x0000000068b40000 C:\Windows\WinSxS\amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.6195_none_8a1dd9552ed7f8d8\ATL80.DLL
0x000000007c8e0000 - 0x000000007c8ee000 C:\Program Files\MATLAB\R2009b\bin\win64\mlautoregister.dll
0x000007fefcfd0000 - 0x000007fefd027000 C:\Windows\system32\apphelp.dll
0x000007fef2bf0000 - 0x000007fef2c41000 C:\Windows\AppPatch\AppPatch64\AcGenral.DLL
0x000007fefcfa0000 - 0x000007fefcfc5000 C:\Windows\system32\SspiCli.dll
0x0000000072c30000 - 0x0000000072c33000 C:\Windows\system32\sfc.dll
0x000007fef93d0000 - 0x000007fef93e0000 C:\Windows\system32\sfc_os.DLL
0x000007fefc450000 - 0x000007fefc46e000 C:\Windows\system32\USERENV.dll
0x000007fefd100000 - 0x000007fefd10f000 C:\Windows\system32\profapi.dll
0x000007fefb4d0000 - 0x000007fefb4e8000 C:\Windows\system32\dwmapi.dll
0x000007fef87e0000 - 0x000007fef87f8000 C:\Windows\system32\MPR.dll
0x000007feef370000 - 0x000007feef7d7000 C:\Windows\AppPatch\AppPatch64\AcXtrnal.DLL
0x000007feff1f0000 - 0x000007feff21e000 C:\Windows\system32\IMM32.DLL
0x000007fefd880000 - 0x000007fefd989000 C:\Windows\system32\MSCTF.dll
0x0000000180000000 - 0x0000000180006000 C:\PROGRA~2\KASPER~1\KASPER~1.0FO\x64\kloehk.dll
0x0000000001790000 - 0x00000000017a9000 C:\PROGRA~2\KASPER~1\KASPER~1.0FO\x64\adialhk.dll
0x0000000068b10000 - 0x0000000068b1f000 C:\Windows\WinSxS\amd64_microsoft.vc80.mfcloc_1fc8b3b9a1e18e3b_8.0.50727.6195_none_bc20f59b0bdd1acd\MFC80DEU.DLL
0x000007fefb860000 - 0x000007fefb8b6000 C:\Windows\system32\uxtheme.dll
0x000007fefa4f0000 - 0x000007fefa517000 C:\Windows\system32\iphlpapi.dll
0x000007fefa4d0000 - 0x000007fefa4db000 C:\Windows\system32\WINNSI.DLL
0x000007fefc7f0000 - 0x000007fefc84b000 C:\Windows\system32\DNSAPI.dll
0x000007fefa2e0000 - 0x000007fefa2f8000 C:\Windows\system32\dhcpcsvc.DLL
0x000007fefa2c0000 - 0x000007fefa2d1000 C:\Windows\system32\dhcpcsvc6.DLL
0x00000000716e0000 - 0x00000000716e3000 C:\Windows\system32\icmp.Dll
0x000007fefd030000 - 0x000007fefd03f000 C:\Windows\system32\CRYPTBASE.dll
0x000000006d800000 - 0x000000006dfb8000 C:\Program Files\Java\jre6\bin\server\jvm.dll
0x000007fefaee0000 - 0x000007fefaf1b000 C:\Windows\system32\WINMM.dll
0x000000006d770000 - 0x000000006d77e000 C:\Program Files\Java\jre6\bin\verify.dll
0x000000006d3b0000 - 0x000000006d3d7000 C:\Program Files\Java\jre6\bin\java.dll
0x000000006d7c0000 - 0x000000006d7d2000 C:\Program Files\Java\jre6\bin\zip.dll
0x000007fefdd70000 - 0x000007fefde09000 C:\Windows\system32\CLBCatQ.DLL
0x0000000079010000 - 0x0000000079032000 C:\Program Files\MATLAB\R2009b\bin\win64\nativejava.dll
0x0000000079040000 - 0x000000007906b000 C:\Program Files\MATLAB\R2009b\bin\win64\nativejmi.dll
0x000000007c920000 - 0x000000007c927000 C:\Program Files\MATLAB\R2009b\bin\win64\nativeservices.dll
0x000000006d000000 - 0x000000006d1c4000 C:\Program Files\Java\jre6\bin\awt.dll
0x000000006d2a0000 - 0x000000006d307000 C:\Program Files\Java\jre6\bin\fontmanager.dll
0x000000006d610000 - 0x000000006d627000 C:\Program Files\Java\jre6\bin\net.dll
0x000007fefc970000 - 0x000007fefc9c5000 C:\Windows\system32\mswsock.dll
0x000007fefc960000 - 0x000007fefc967000 C:\Windows\System32\wship6.dll
0x000000006d630000 - 0x000000006d63b000 C:\Program Files\Java\jre6\bin\nio.dll
VM Arguments:
jvm_args: -Xss512k -XX:PermSize=32m -Xms64m -XX:NewRatio=3 -XX:MaxPermSize=128m -Xmx196m -XX:MaxDirectMemorySize=2147400000 -Dsun.java2d.noddraw=true -Dsun.awt.nopixfmt=true -Xshare:off -Xrs -Djava.library.path=C:\Program Files\MATLAB\R2009b\bin\win64 vfprintf abort
java_command: <unknown>
Launcher Type: generic
Environment Variables:
PATH=C:\Perl64\site\bin;C:\Perl64\bin;C:\Program Files\Microsoft HPC Pack 2008\Bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\SIMULIA\Abaqus\Commands;C:\Program Files\MATLAB\R2009b\runtime\win64;C:\Program Files\MATLAB\R2009b\bin;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\
USERNAME=Entacher
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 5, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 7 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
Memory: 4k page, physical 8312660k(5931588k free), swap 16623468k(14202376k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (20.7-b02) for windows-amd64 JRE (1.6.0_32-b05), built on Apr 5 2012 13:39:03 by "java_re" with MS VC++ 8.0 (VS2005)
time: Thu May 03 12:35:05 2012
elapsed time: 2 seconds
After that I can't start Matlab again without a restart.
I tried to install new Versions of Java and set the path, but nothing seemed to help.
Can you help me?
Kind regards,
Martin
  2 Comments
Daniel Shub
Daniel Shub on 3 May 2012
Do you have full permission (read/write/execute) for the folder and files that causes the crash?
Martin
Martin on 3 May 2012
Thank you for your very fast answer.
In the meantime I found out the following:
The error occurs due to some very specific files. I cannot find a difference however compared to the other files. Same permission, same structure, same number of lines of heading, they came from one testing machine and for me, they look identical except for the numeric values.
Also, the filename of the files that cause the crash doesn't seem to have a certain difference.
As I said, on the machine of my colleague, everything worked out, so I will finish this job on another computer and then hope that I will not experience similar things in the future.

Sign in to comment.

Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!