Reputation: 1
When I open the eclipse IDE, after building workspace upto 70%, IDE suddenly closes. When open the eclipse ide path, I got the error log file printed, as hs_err_pid3604.log
hs_err_pid3604.log file details
An unexpected error has been detected by Java Runtime Environment:
Internal Error (4E4D4554484F440E435050071F), pid=4052, tid=2236
Java VM: Java HotSpot(TM) Server VM (1.6.0-b105 mixed mode) If you would like to submit a bug report, please visit:
Not getting why this is happening, how to fix this problem?
Upvotes: 0
Views: 275
Reputation: 20608
1.6.0-b105 is a very old version of java (I found some references to it from 2006 posts…), you should probably try first with an up-to-date, or at least more recent version. Filing a bug for such an old version would not make sense if it cannot be reproduced on recent versions.
If it still does not work, try to cleanup eclipse by running it with -clean
parameter from the command line.
Upvotes: 1
Reputation: 5145
Increase the memory and try?
http://wiki.eclipse.org/Eclipse.ini
Upvotes: 0
Reputation: 19443
Sometimes this happens because of a bug in the Java VM (or something possibly wrong with Eclipse SWT). Usually these are not reproducible. If you get it consistently, file a bug at eclipse.org and they can help there.
Upvotes: 0