Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 319609

Summary: IDE crashes when editing a particular JavaScript source file.
Product: z_Archived Reporter: shaidar.haran
Component: Webtools Source Editing JSDTAssignee: Project Inbox <jsdt.javascript-inbox>
Status: CLOSED DUPLICATE QA Contact: Nitin Dahyabhai <thatnitind>
Severity: critical    
Priority: P3 CC: cmjaun, eclipse.felipe, jacek.pospychala, pwebster
Version: unspecifiedKeywords: needinfo
Target Milestone: ---   
Hardware: PC   
OS: Linux   
Whiteboard:

Description shaidar.haran CLA 2010-07-12 12:30:22 EDT
Build Identifier: 20100617-1415

After adding JSDoc-comments to this file, whenever I type "this." in the following JS-file, the IDE crashes. Other files (w/ or w/o JSDoc-comments) are unaffected and I can't figure out what is different about this one.
 
/** 
 * timer class
 * 
 * Copyright (c) xxx
 * @author xxx
 * @version 1.0.0
 * @constructor
 * @param	{number} 	interval Interval in which to repeat all function calls (in milliseconds).
 * @throws	TypeError
 */
function timer(interval) {
	if (isNaN(interval)) throw TypeError('Usage: var t = new timer({number} Interval)');
	var _interval = interval;
	var _handle; // timer handle used to stop the execution
	var _timedFunctions = new Array(); // functions to be executed on each step
	var _fcount = 0; // counter for function IDs assigned to added functions; used to delete them
	var _errors = new Array();
	
	/**
	 * Adds a Function to the timers execution loop.
	 * 
	 * @param	{function}	fnc	Function to be added to the execution loop.
	 * @returns	{number}	Identifier for the added function. Use it to remove the function again from the loop.
	 * @throws	TypeError
	 */
	this.addFunction = function(fnc) {
		if (typeof fnc !== typeof(function(){})) throw TypeError('Usage: timer.addFunction({function} fnc)');
		_timedFunctions['f'+_fcount] = fnc;
		return _fcount++;
	};
	/**
	 * Removes a function from the timers execution loop.
	 * 
	 * @param	{number}	fid	ID of the function to be deleted.
	 * @returns	{boolean}	Success?
	 */
	this.rmFunction = function(fid) {
		if (isNaN(fncNumber)) throw TypeError('Usage: timer.rmFunction({number} fid)');
		return (delete _timedFunctions['f'+parseInt(fid.toString())]);
	};
	
	/**
	 * Execute all functions in the loop.
	 * 
	 * @returns	null
	 */
	this._step = function() {
		for (var i=0; i<_timedFunctions.length; i++) {
			try {
				(_timedFunctions[i])();
			} catch(e) {
				_errors.push(e);
			}
		}
	};
	/**
	 * Start the timer.
	 * 
	 * @returns	null
	 */
	this.start = function() {
		var thisTimer = this;
		_handle = setInterval(function() {thisTimer._step();},_interval);
	};
	/**
	 * Stop the timer.
	 * 
	 * @returns	null
	 */
	this.stop = function() {
		window.clearInterval(_handle);
	};
	/**
	 * Change the timer interval. (This automatically restarts the timer.)
	 * 
	 * @param	{number}	interval
	 * @returns	null
	 */
	this.changeInterval = function(interval) {
		if (isNaN(interval)) throw TypeError('Usage: timer.changeInterval({number} interval)');
		this.stop();
		_interval = interval;
		this.start();
	};
}


PS: I use Debian 5.0.5, kernel 2.6.26-2-686

Reproducible: Always

Steps to Reproduce:
1. Create a new JS file
2. Paste the code above
3. Type 'this.' anywhere in the file
Comment 1 Paul Webster CLA 2010-07-12 12:33:29 EDT
Are you using Webtools/JSDT?  Please include the hs_err_<pid>.log file that a JVM crash produces.

PW
Comment 2 shaidar.haran CLA 2010-07-12 13:27:12 EDT
(In reply to comment #1)
> Are you using Webtools/JSDT?  Please include the hs_err_<pid>.log file that a
> JVM crash produces.
> 
> PW

According to the feature list, I am. (Out of the box Eclipse IDE for Java EE Developers)

hs_err:

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0xb70afac6, pid=4158, tid=3075901104
#
# JRE version: 6.0_20-b02
# Java VM: Java HotSpot(TM) Client VM (16.3-b01 mixed mode, sharing linux-x86 )
# Problematic frame:
# C  [libpango-1.0.so.0+0x22ac6]  pango_layout_new+0x36
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x080d0000):  JavaThread "main" [_thread_in_native, id=4158, stack(0xbffae000,0xbfffe000)]

siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000c

Registers:
EAX=0x00000000, EBX=0xb70cc0c8, ECX=0x00000000, EDX=0x00000000
ESP=0xbfffb780, EBP=0xbfffb798, ESI=0x08f33740, EDI=0x090dcf80
EIP=0xb70afac6, CR2=0x0000000c, EFLAGS=0x00010282

Top of Stack: (sp=0xbfffb780)
0xbfffb780:   08318a00 00000000 0000103e b6cb1cfc
0xbfffb790:   08f33740 08e80098 bfffb7b8 b6ba7268
0xbfffb7a0:   090dcf80 08079970 bfffb848 b6ba71fa
0xbfffb7b0:   b6cb1cfc 08e80098 bfffb7e8 b69ab67f
0xbfffb7c0:   08f33740 00000000 00000000 08f33740
0xbfffb7d0:   b76d1fdc 08e80098 08e80100 b6cb1cfc
0xbfffb7e0:   080fd3f8 08e80098 bfffb848 b69abea3
0xbfffb7f0:   00000001 00000000 bfffb848 b72607bf 

Instructions: (pc=0xb70afac6)
0xb70afab6:   c7 44 24 04 00 00 00 00 89 04 24 e8 c2 7d fe ff
0xb70afac6:   89 78 0c 89 c6 89 3c 24 e8 15 7e fe ff 89 f0 8b 

Stack: [0xbffae000,0xbfffe000],  sp=0xbfffb780,  free space=135bfffb110k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [libpango-1.0.so.0+0x22ac6]  pango_layout_new+0x36
C  [libgtk-x11-2.0.so.0+0x280268]  gtk_widget_create_pango_layout+0x78
C  [libgtk-x11-2.0.so.0+0x8467f]
C  [libgtk-x11-2.0.so.0+0x84ea3]
C  [libgtk-x11-2.0.so.0+0x7d57e]  gtk_cell_renderer_render+0xfe
C  [libgtk-x11-2.0.so.0+0x26b20a]
C  [libgtk-x11-2.0.so.0+0x26c01c]
C  [libgtk-x11-2.0.so.0+0x266b6b]
C  [libgtk-x11-2.0.so.0+0x267f12]
C  [libgtk-x11-2.0.so.0+0x153816]
C  [libgobject-2.0.so.0+0x9089]
C  [libgobject-2.0.so.0+0xa90b]  g_closure_invoke+0x1ab
C  [libgobject-2.0.so.0+0x1db15]
C  [libgobject-2.0.so.0+0x1f228]  g_signal_emit_valist+0x688
C  [libgobject-2.0.so.0+0x1f7e6]  g_signal_emit+0x26
C  [libgtk-x11-2.0.so.0+0x27c44e]
C  [libgtk-x11-2.0.so.0+0x14d9e8]  gtk_main_do_event+0x568
C  [libswt-pi-gtk-3650.so+0x3fcba]  Java_org_eclipse_swt_internal_gtk_OS__1gtk_1main_1do_1event+0x1b
J  org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(I)V
J  org.eclipse.swt.widgets.Display.eventProc(II)I
v  ~StubRoutines::call_stub
V  [libjvm.so+0x219840]
V  [libjvm.so+0x33f298]
V  [libjvm.so+0x21969f]
V  [libjvm.so+0x24bebb]
V  [libjvm.so+0x22d9b2]
C  [libswt-gtk-3650.so+0x23f8]  callback+0x22c
C  0xb31a0192
C  [libgdk-x11-2.0.so.0+0x2ed6d]
C  [libgdk-x11-2.0.so.0+0x2f62b]  gdk_window_process_updates+0x13b
C  [libgdk-x11-2.0.so.0+0x2f5c2]  gdk_window_process_updates+0xd2
C  [libgdk-x11-2.0.so.0+0x2f5c2]  gdk_window_process_updates+0xd2
C  [libgdk-x11-2.0.so.0+0x2f5c2]  gdk_window_process_updates+0xd2
C  [libswt-pi-gtk-3650.so+0x3b619]  Java_org_eclipse_swt_internal_gtk_OS__1gdk_1window_1process_1updates+0x20
j  org.eclipse.swt.internal.gtk.OS._gdk_window_process_updates(IZ)V+0
j  org.eclipse.swt.internal.gtk.OS.gdk_window_process_updates(IZ)V+9
j  org.eclipse.swt.widgets.Control.update(ZZ)V+45
J  org.eclipse.swt.widgets.Shell.setVisible(Z)V
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup.displayProposals()V+89
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$23(Lorg/eclipse/jface/text/contentassist/CompletionProposalPopup;)V+1
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup$2.run()V+203
j  org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup.showProposals(Z)Ljava/lang/String;+73
j  org.eclipse.jface.text.contentassist.ContentAssistant$2.run()V+69
J  org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
J  org.eclipse.swt.widgets.Display.readAndDispatch()Z
J  org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
j  org.eclipse.ui.internal.Workbench.runUI()I+555
j  org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
j  org.eclipse.ui.internal.Workbench$7.run()V+55
j  org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j  org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
j  org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j  org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
j  org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
j  org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
j  org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
j  org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
j  org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
v  ~StubRoutines::call_stub
V  [libjvm.so+0x219840]
V  [libjvm.so+0x33f298]
V  [libjvm.so+0x21969f]
V  [libjvm.so+0x36c2db]
V  [libjvm.so+0x36f241]
V  [libjvm.so+0x2955cf]
C  [libjava.so+0x15314]  Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x34
j  sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j  sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
j  sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
j  org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
j  org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
j  org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
v  ~StubRoutines::call_stub
V  [libjvm.so+0x219840]
V  [libjvm.so+0x33f298]
V  [libjvm.so+0x21969f]
V  [libjvm.so+0x24bebb]
V  [libjvm.so+0x22d66e]
C  [eclipse_1307.so+0x7fd1]  startJavaJNI+0x418
C  [eclipse_1307.so+0x959c]  startJavaVM+0x24
C  [eclipse_1307.so+0x30d6]  run+0x588
C  [eclipse+0x10ee]
C  [libc.so.6+0x16455]  __libc_start_main+0xe5

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
J  org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(I)V
J  org.eclipse.swt.widgets.Display.eventProc(II)I
v  ~StubRoutines::call_stub
j  org.eclipse.swt.internal.gtk.OS._gdk_window_process_updates(IZ)V+0
j  org.eclipse.swt.internal.gtk.OS.gdk_window_process_updates(IZ)V+9
j  org.eclipse.swt.widgets.Control.update(ZZ)V+45
J  org.eclipse.swt.widgets.Shell.setVisible(Z)V
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup.displayProposals()V+89
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$23(Lorg/eclipse/jface/text/contentassist/CompletionProposalPopup;)V+1
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup$2.run()V+203
j  org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
j  org.eclipse.jface.text.contentassist.CompletionProposalPopup.showProposals(Z)Ljava/lang/String;+73
j  org.eclipse.jface.text.contentassist.ContentAssistant$2.run()V+69
J  org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
J  org.eclipse.swt.widgets.Display.readAndDispatch()Z
J  org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
j  org.eclipse.ui.internal.Workbench.runUI()I+555
j  org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
j  org.eclipse.ui.internal.Workbench$7.run()V+55
j  org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
j  org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
j  org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
j  org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
j  org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
j  org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
j  org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
j  org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
j  org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
v  ~StubRoutines::call_stub
j  sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j  sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
j  sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
j  org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
j  org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
j  org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x0952f400 JavaThread "AutoAssist Delay" [_thread_blocked, id=6633, stack(0xaf078000,0xaf0c9000)]
  0xae62b800 JavaThread "Worker-174" [_thread_blocked, id=6613, stack(0xaf25e000,0xaf2af000)]
  0xae62ac00 JavaThread "Worker-172" [_thread_blocked, id=6604, stack(0xae941000,0xae992000)]
  0xae62a400 JavaThread "Worker-171" [_thread_blocked, id=6601, stack(0xb24af000,0xb2500000)]
  0xb22d5800 JavaThread "Worker-170" [_thread_blocked, id=6595, stack(0xb231a000,0xb236b000)]
  0x0956b800 JavaThread "Worker-169" [_thread_blocked, id=6594, stack(0xaedaf000,0xaee00000)]
  0xb2578c00 JavaThread "Worker-168" [_thread_blocked, id=6590, stack(0xaf2af000,0xaf300000)]
  0x09529000 JavaThread "Worker-167" [_thread_blocked, id=6587, stack(0xaf44a000,0xaf49b000)]
  0xae603c00 JavaThread "Worker-166" [_thread_blocked, id=6584, stack(0xb240d000,0xb245e000)]
  0xb208ac00 JavaThread "Worker-164" [_thread_blocked, id=6573, stack(0xae7ac000,0xae7fd000)]
  0xb1d19c00 JavaThread "Worker-163" [_thread_blocked, id=6570, stack(0xae84e000,0xae89f000)]
  0xb25b2400 JavaThread "Worker-162" [_thread_blocked, id=6136, stack(0xb245e000,0xb24af000)]
  0xae61e400 JavaThread "Worker-159" [_thread_blocked, id=6002, stack(0xaebc9000,0xaec1a000)]
  0xb1d25400 JavaThread "Worker-157" [_thread_blocked, id=5987, stack(0xaef34000,0xaef85000)]
  0xaf36dc00 JavaThread "Worker-156" [_thread_blocked, id=5916, stack(0xaf16b000,0xaf1bc000)]
  0xb2088c00 JavaThread "Worker-155" [_thread_blocked, id=5886, stack(0xaf1bc000,0xaf20d000)]
  0x09510800 JavaThread "org.eclipse.wst.jsdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=5853, stack(0xb210d000,0xb215e000)]
  0xb323c000 JavaThread "Worker-153" [_thread_blocked, id=5762, stack(0xaea34000,0xaea85000)]
  0xae606c00 JavaThread "Worker-151" [_thread_blocked, id=5727, stack(0xaed5e000,0xaedaf000)]
  0xb25ea400 JavaThread "Worker-147" [_thread_blocked, id=5706, stack(0xb343a000,0xb348b000)]
  0xae600800 JavaThread "Worker-142" [_thread_blocked, id=5693, stack(0xae9e3000,0xaea34000)]
  0xae602c00 JavaThread "Worker-141" [_thread_blocked, id=5689, stack(0xae992000,0xae9e3000)]
  0xb25bd000 JavaThread "Worker-140" [_thread_blocked, id=5688, stack(0xae7fd000,0xae84e000)]
  0xae601000 JavaThread "Worker-138" [_thread_blocked, id=5682, stack(0xaec1a000,0xaec6b000)]
  0xb25e1c00 JavaThread "Worker-136" [_thread_blocked, id=5663, stack(0xb2eb4000,0xb2f05000)]
  0xaee01400 JavaThread "Worker-127" [_thread_blocked, id=5626, stack(0xaed0d000,0xaed5e000)]
  0x082f3000 JavaThread "Worker-122" [_thread_blocked, id=5607, stack(0xb236b000,0xb23bc000)]
  0x08340000 JavaThread "Worker-121" [_thread_blocked, id=5606, stack(0xae89f000,0xae8f0000)]
  0xaee03c00 JavaThread "Worker-120" [_thread_blocked, id=5603, stack(0xb215e000,0xb21af000)]
  0xaf35a800 JavaThread "Worker-119" [_thread_blocked, id=5602, stack(0xaf027000,0xaf078000)]
  0xaee00c00 JavaThread "Worker-96" [_thread_blocked, id=5515, stack(0xaeb78000,0xaebc9000)]
  0xb1d13000 JavaThread "Worker-85" [_thread_blocked, id=5442, stack(0xaf11a000,0xaf16b000)]
  0x0949fc00 JavaThread "Worker-77" [_thread_blocked, id=5416, stack(0xaef85000,0xaefd6000)]
  0xb25d2c00 JavaThread "Worker-66" [_thread_blocked, id=5362, stack(0xaea85000,0xaead6000)]
  0x094b2400 JavaThread "org.eclipse.wst.jsdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=5094, stack(0xaec6b000,0xaecbc000)]
  0x08f21c00 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=4243, stack(0xb26ba000,0xb270b000)]
  0x08cdf400 JavaThread "org.eclipse.wst.jsdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=4240, stack(0xb21af000,0xb2200000)]
  0x081bc800 JavaThread "Worker-6" [_thread_blocked, id=4233, stack(0xb23bc000,0xb240d000)]
  0x08f38000 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=4190, stack(0xb2710000,0xb2761000)]
  0x08c78c00 JavaThread "Java indexing" daemon [_thread_blocked, id=4189, stack(0xb2a74000,0xb2ac5000)]
  0x0886b000 JavaThread "JavaScript indexing" daemon [_thread_blocked, id=4187, stack(0xb2bbf000,0xb2c10000)]
  0x082ab000 JavaThread "Worker-JM" [_thread_blocked, id=4183, stack(0xb338a000,0xb33db000)]
  0x081e8400 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=4182, stack(0xb33e9000,0xb343a000)]
  0x081a3000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=4180, stack(0xb3496000,0xb34e7000)]
  0xb3864c00 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=4179, stack(0xb34e7000,0xb3538000)]
  0xb3877800 JavaThread "State Data Manager" daemon [_thread_blocked, id=4178, stack(0xb3538000,0xb3589000)]
  0xb3800c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=4176, stack(0xb3902000,0xb3953000)]
  0x080ff400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4175, stack(0xb3953000,0xb39d4000)]
  0x080fd800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4174, stack(0xb39d4000,0xb3a25000)]
  0x080f5c00 JavaThread "Finalizer" daemon [_thread_blocked, id=4173, stack(0xb3a25000,0xb3a76000)]
  0x080f4400 JavaThread "Reference Handler" daemon [_thread_blocked, id=4172, stack(0xb3a76000,0xb3ac7000)]
=>0x080d0000 JavaThread "main" [_thread_in_native, id=4158, stack(0xbffae000,0xbfffe000)]

Other Threads:
  0x080f2c00 VMThread [stack: 0xb3ac7000,0xb3b48000] [id=4171]
  0xb3803800 WatcherThread [stack: 0xb377f000,0xb3800000] [id=4177]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 def new generation   total 24000K, used 15259K [0x62d40000, 0x64740000, 0x6d7e0000)
  eden space 21376K,  70% used [0x62d40000, 0x63c01428, 0x64220000)
  from space 2624K,   5% used [0x644b0000, 0x644d5b40, 0x64740000)
  to   space 2624K,   0% used [0x64220000, 0x64220000, 0x644b0000)
 tenured generation   total 52912K, used 30129K [0x6d7e0000, 0x70b8c000, 0x82d40000)
   the space 52912K,  56% used [0x6d7e0000, 0x6f54c778, 0x6f54c800, 0x70b8c000)
 compacting perm gen  total 60928K, used 60730K [0x82d40000, 0x868c0000, 0x92d40000)
   the space 60928K,  99% used [0x82d40000, 0x8688ea58, 0x8688ec00, 0x868c0000)
    ro space 10240K,  61% used [0x92d40000, 0x93366298, 0x93366400, 0x93740000)
    rw space 12288K,  60% used [0x93740000, 0x93e76cb8, 0x93e76e00, 0x94340000)

Dynamic libraries:
08048000-0804c000 r-xp 00000000 08:01 27051224   /usr/local/dev/eclipse/eclipse
0804c000-0804d000 rw-p 00003000 08:01 27051224   /usr/local/dev/eclipse/eclipse
0804d000-0964b000 rw-p 0804d000 00:00 0          [heap]
62d40000-64740000 rw-p 62d40000 00:00 0 
64740000-6d7e0000 rw-p 64740000 00:00 0 
6d7e0000-70b8c000 rw-p 6d7e0000 00:00 0 
70b8c000-70d88000 ---p 70b8c000 00:00 0 
70d88000-82d40000 rw-p 70d88000 00:00 0 
82d40000-868c0000 rw-p 82d40000 00:00 0 
868c0000-86940000 ---p 868c0000 00:00 0 
86940000-92d40000 rw-p 86940000 00:00 0 
92d40000-93367000 r--s 00001000 08:01 27051161   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client/classes.jsa
93367000-93740000 rw-p 93367000 00:00 0 
93740000-93e77000 rw-p 00628000 08:01 27051161   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client/classes.jsa
93e77000-94340000 rw-p 93e77000 00:00 0 
94340000-94421000 rw-p 00d5f000 08:01 27051161   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client/classes.jsa
94421000-94740000 rw-p 94421000 00:00 0 
94740000-94748000 r-xs 00e40000 08:01 27051161   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client/classes.jsa
94748000-94b40000 rw-p 94748000 00:00 0 
ae600000-ae635000 rw-p ae600000 00:00 0 
ae635000-ae700000 ---p ae635000 00:00 0 
ae7ac000-ae7af000 ---p ae7ac000 00:00 0 
ae7af000-ae7fd000 rwxp ae7af000 00:00 0 
ae7fd000-ae800000 ---p ae7fd000 00:00 0 
ae800000-ae84e000 rwxp ae800000 00:00 0 
ae84e000-ae851000 ---p ae84e000 00:00 0 
ae851000-ae89f000 rwxp ae851000 00:00 0 
ae89f000-ae8a2000 ---p ae89f000 00:00 0 
ae8a2000-ae8f0000 rwxp ae8a2000 00:00 0 
ae8f0000-ae8f3000 ---p ae8f0000 00:00 0 
ae8f3000-ae941000 rwxp ae8f3000 00:00 0 
ae941000-ae944000 ---p ae941000 00:00 0 
ae944000-ae992000 rwxp ae944000 00:00 0 
ae992000-ae995000 ---p ae992000 00:00 0 
ae995000-ae9e3000 rwxp ae995000 00:00 0 
ae9e3000-ae9e6000 ---p ae9e3000 00:00 0 
ae9e6000-aea34000 rwxp ae9e6000 00:00 0 
aea34000-aea37000 ---p aea34000 00:00 0 
aea37000-aea85000 rwxp aea37000 00:00 0 
aea85000-aea88000 ---p aea85000 00:00 0 
aea88000-aead6000 rwxp aea88000 00:00 0 
aead6000-aead9000 ---p aead6000 00:00 0 
aead9000-aeb27000 rwxp aead9000 00:00 0 
aeb27000-aeb2a000 ---p aeb27000 00:00 0 
aeb2a000-aeb78000 rwxp aeb2a000 00:00 0 
aeb78000-aeb7b000 ---p aeb78000 00:00 0 
aeb7b000-aebc9000 rwxp aeb7b000 00:00 0 
aebc9000-aebcc000 ---p aebc9000 00:00 0 
aebcc000-aec1a000 rwxp aebcc000 00:00 0 
aec1a000-aec1d000 ---p aec1a000 00:00 0 
aec1d000-aec6b000 rwxp aec1d000 00:00 0 
aec6b000-aec6e000 ---p aec6b000 00:00 0 
aec6e000-aecbc000 rwxp aec6e000 00:00 0 
aecbc000-aecbf000 ---p aecbc000 00:00 0 
aecbf000-aed0d000 rwxp aecbf000 00:00 0 
aed0d000-aed10000 ---p aed0d000 00:00 0 
aed10000-aed5e000 rwxp aed10000 00:00 0 
aed5e000-aed61000 ---p aed5e000 00:00 0 
aed61000-aedaf000 rwxp aed61000 00:00 0 
aedaf000-aedb2000 ---p aedaf000 00:00 0 
aedb2000-aee00000 rwxp aedb2000 00:00 0 
aee00000-aeeb3000 rw-p aee00000 00:00 0 
aeeb3000-aef00000 ---p aeeb3000 00:00 0 
aef34000-aef37000 ---p aef34000 00:00 0 
aef37000-aef85000 rwxp aef37000 00:00 0 
aef85000-aef88000 ---p aef85000 00:00 0 
aef88000-aefd6000 rwxp aef88000 00:00 0 
aefd6000-aefd9000 ---p aefd6000 00:00 0 
aefd9000-af027000 rwxp aefd9000 00:00 0 
af027000-af02a000 ---p af027000 00:00 0 
af02a000-af078000 rwxp af02a000 00:00 0 
af078000-af07b000 ---p af078000 00:00 0 
af07b000-af0c9000 rwxp af07b000 00:00 0 
af0c9000-af0cc000 ---p af0c9000 00:00 0 
af0cc000-af11a000 rwxp af0cc000 00:00 0 
af11a000-af11d000 ---p af11a000 00:00 0 
af11d000-af16b000 rwxp af11d000 00:00 0 
af16b000-af16e000 ---p af16b000 00:00 0 
af16e000-af1bc000 rwxp af16e000 00:00 0 
af1bc000-af1bf000 ---p af1bc000 00:00 0 
af1bf000-af20d000 rwxp af1bf000 00:00 0 
af20d000-af210000 ---p af20d000 00:00 0 
af210000-af25e000 rwxp af210000 00:00 0 
af25e000-af261000 ---p af25e000 00:00 0 
af261000-af2af000 rwxp af261000 00:00 0 
af2af000-af2b2000 ---p af2af000 00:00 0 
af2b2000-af300000 rwxp af2b2000 00:00 0 
af300000-af3af000 rw-p af300000 00:00 0 
af3af000-af400000 ---p af3af000 00:00 0 
af422000-af433000 r--s 000b6000 08:01 27051775   /usr/local/dev/eclipse/plugins/org.eclipse.wst.server.ui_1.1.203.v20100601.jar
af433000-af44a000 r--s 00127000 08:01 27051406   /usr/local/dev/eclipse/plugins/org.apache.xerces_2.9.0.v201005080400.jar
af44a000-af44d000 ---p af44a000 00:00 0 
af44d000-af49b000 rwxp af44d000 00:00 0 
af49b000-af4e6000 r--p 00000000 08:01 26142430   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf
af4e6000-af4e7000 ---p af4e6000 00:00 0 
af4e7000-afce7000 rwxp af4e7000 00:00 0 
afce7000-afce8000 ---p afce7000 00:00 0 
afce8000-b04e8000 rwxp afce8000 00:00 0 
b04e8000-b0531000 r-xp 00000000 08:01 12697737   /usr/lib/libORBit-2.so.0.1.0
b0531000-b053a000 rw-p 00049000 08:01 12697737   /usr/lib/libORBit-2.so.0.1.0
b053a000-b053b000 rw-p b053a000 00:00 0 
b053b000-b056a000 r-xp 00000000 08:01 12697745   /usr/lib/libgconf-2.so.4.1.5
b056a000-b056d000 rw-p 0002e000 08:01 12697745   /usr/lib/libgconf-2.so.4.1.5
b056d000-b05a3000 r-xp 00000000 08:01 26104587   /usr/lib/libdbus-1.so.3.4.0
b05a3000-b05a5000 rw-p 00035000 08:01 26104587   /usr/lib/libdbus-1.so.3.4.0
b05a5000-b05c0000 r-xp 00000000 08:01 26104804   /usr/lib/libdbus-glib-1.so.2.1.0
b05c0000-b05c1000 rw-p 0001b000 08:01 26104804   /usr/lib/libdbus-glib-1.so.2.1.0
b05c1000-b05c2000 ---p b05c1000 00:00 0 
b05c2000-b0dc2000 rwxp b05c2000 00:00 0 
b0dc2000-b0e0e000 r-xp 00000000 08:01 26105300   /usr/lib/libXt.so.6.0.0
b0e0e000-b0e11000 rw-p 0004c000 08:01 26105300   /usr/lib/libXt.so.6.0.0
b0e11000-b0e12000 rw-p b0e11000 00:00 0 
b0e12000-b0e43000 r-xp 00000000 08:01 12697806   /usr/lib/libnspr4.so.0d
b0e43000-b0e44000 rw-p 00031000 08:01 12697806   /usr/lib/libnspr4.so.0d
b0e44000-b0e46000 rw-p b0e44000 00:00 0 
b0e46000-b0e85000 r-xp 00000000 08:01 12697978   /usr/lib/libhunspell-1.2.so.0.0.0
b0e85000-b0e89000 rw-p 0003e000 08:01 12697978   /usr/lib/libhunspell-1.2.so.0.0.0
b0e89000-b0f58000 r-xp 00000000 08:01 12697814   /usr/lib/libnss3.so.1d
b0f58000-b0f5c000 rw-p 000cf000 08:01 12697814   /usr/lib/libnss3.so.1d
b0f5c000-b0f78000 r-xp 00000000 08:01 12697816   /usr/lib/libsmime3.so.1d
b0f78000-b0f7a000 rw-p 0001c000 08:01 12697816   /usr/lib/libsmime3.so.1d
b0f7a000-b100a000 r-xp 00000000 08:01 26102017   /usr/lib/libmozjs.so.1d
b100a000-b100f000 rw-p 0008f000 08:01 26102017   /usr/lib/libmozjs.so.1d
b100f000-b103f000 r-xp 00000000 08:01 12697974   /usr/lib/liblcms.so.1.0.16
b103f000-b1040000 rw-p 00030000 08:01 12697974   /usr/lib/liblcms.so.1.0.16
b1040000-b1043000 rw-p b1040000 00:00 0 
b1043000-b10b0000 r-xp 00000000 08:01 26104400   /usr/lib/libsqlite3.so.0.8.6
b10b0000-b10b2000 rw-p 0006c000 08:01 26104400   /usr/lib/libsqlite3.so.0.8.6
b10b2000-b1b26000 r-xp 00000000 08:01 26215986   /usr/lib/xulrunner-1.9/libxul.so
b1b26000-b1c03000 rw-p 00a74000 08:01 26215986   /usr/lib/xulrunner-1.9/libxul.so
b1c03000-b1c12000 rw-p b1c03000 00:00 0 
b1c12000-b1cf5000 r-xp 00000000 08:01 26100223   /usr/lib/libstdc++.so.6.0.10
b1cf5000-b1cf8000 r--p 000e2000 08:01 26100223   /usr/lib/libstdc++.so.6.0.10
b1cf8000-b1cfa000 rw-p 000e5000 08:01 26100223   /usr/lib/libstdc++.so.6.0.10
b1cfa000-b1dfd000 rw-p b1cfa000 00:00 0 
b1dfd000-b1e00000 ---p b1dfd000 00:00 0 
b1e00000-b1f00000 rw-p b1e00000 00:00 0 
b1f00000-b1ffd000 rw-p b1f00000 00:00 0 
b1ffd000-b2000000 ---p b1ffd000 00:00 0 
b2000000-b20fd000 rw-p b2000000 00:00 0 
b20fd000-b2100000 ---p b20fd000 00:00 0 
b210d000-b2110000 ---p b210d000 00:00 0 
b2110000-b215e000 rwxp b2110000 00:00 0 
b215e000-b2161000 ---p b215e000 00:00 0 
b2161000-b21af000 rwxp b2161000 00:00 0 
b21af000-b21b2000 ---p b21af000 00:00 0 
b21b2000-b2200000 rwxp b21b2000 00:00 0 
b2200000-b22fa000 rw-p b2200000 00:00 0 
b22fa000-b2300000 ---p b22fa000 00:00 0 
b2304000-b2318000 r-xp 00000000 08:01 27076681   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-xulrunner-gtk-3650.so
b2318000-b231a000 rw-p 00014000 08:01 27076681   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-xulrunner-gtk-3650.so
b231a000-b231d000 ---p b231a000 00:00 0 
b231d000-b236b000 rwxp b231d000 00:00 0 
b236b000-b236e000 ---p b236b000 00:00 0 
b236e000-b23bc000 rwxp b236e000 00:00 0 
b23bc000-b23bf000 ---p b23bc000 00:00 0 
b23bf000-b240d000 rwxp b23bf000 00:00 0 
b240d000-b2410000 ---p b240d000 00:00 0 
b2410000-b245e000 rwxp b2410000 00:00 0 
b245e000-b2461000 ---p b245e000 00:00 0 
b2461000-b24af000 rwxp b2461000 00:00 0 
b24af000-b24b2000 ---p b24af000 00:00 0 
b24b2000-b2500000 rwxp b24b2000 00:00 0 
b2500000-b25fa000 rw-p b2500000 00:00 0 
b25fa000-b2600000 ---p b25fa000 00:00 0 
b2602000-b2627000 r-xp 00000000 08:01 12697817   /usr/lib/libssl3.so.1d
b2627000-b2629000 rw-p 00025000 08:01 12697817   /usr/lib/libssl3.so.1d
b2629000-b26a8000 r--s 0073d000 08:01 27051637   /usr/local/dev/eclipse/plugins/org.eclipse.wst.jsdt.ui_1.1.0.v201005200157.jar
b26a8000-b26b0000 r--s 00052000 08:01 27051608   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.tasks.core_3.4.0.v20100608-0100-e3x.jar
b26b0000-b26b3000 r--s 00013000 08:01 27051678   /usr/local/dev/eclipse/plugins/org.eclipse.jst.ws.jaxws.utils_1.0.0.v201004171919.jar
b26ba000-b26bd000 ---p b26ba000 00:00 0 
b26bd000-b270b000 rwxp b26bd000 00:00 0 
b270b000-b2710000 r--s 00025000 08:01 27051238   /usr/local/dev/eclipse/plugins/org.eclipse.jst.ws.jaxws.dom.runtime_1.0.0.v201004171919.jar
b2710000-b2713000 ---p b2710000 00:00 0 
b2713000-b2761000 rwxp b2713000 00:00 0 
b2761000-b2768000 r--s 00111000 08:01 26362311   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/resources.jar
b276a000-b2771000 r--s 0003c000 08:01 27051344   /usr/local/dev/eclipse/plugins/org.eclipse.wst.common.snippets_1.2.0.v201004290255.jar
b2771000-b2790000 r--s 0016a000 08:01 27051295   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.tasks.ui_3.4.0.v20100608-0100-e3x.jar
b2792000-b27a6000 r-xp 00000000 08:01 26105296   /usr/lib/libICE.so.6.3.0
b27a6000-b27a7000 rw-p 00014000 08:01 26105296   /usr/lib/libICE.so.6.3.0
b27a7000-b27a9000 rw-p b27a7000 00:00 0 
b27a9000-b27b3000 r--s 00084000 08:01 27051380   /usr/local/dev/eclipse/plugins/org.eclipse.team.cvs.core_3.3.300.I20100526-0800.jar
b27b8000-b27d6000 r-xp 00000000 08:01 26104628   /usr/lib/libjpeg.so.62.0.0
b27d6000-b27d7000 rw-p 0001e000 08:01 26104628   /usr/lib/libjpeg.so.62.0.0
b27d7000-b280b000 r--p 00000000 08:01 26142437   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-BoldOblique.ttf
b280b000-b2841000 r--p 00000000 08:01 26142435   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Oblique.ttf
b2841000-b2888000 r--p 00000000 08:01 26142428   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Bold.ttf
b2888000-b28d4000 r--p 00000000 08:01 26142426   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf
b28d8000-b28e0000 r--s 0005c000 08:01 27051850   /usr/local/dev/eclipse/plugins/org.eclipse.wst.validation_1.2.200.v201005271900.jar
b28e0000-b2900000 r--s 0018b000 08:01 27051834   /usr/local/dev/eclipse/plugins/org.eclipse.jst.j2ee_1.1.400.v201005271900.jar
b2900000-b29fe000 rw-p b2900000 00:00 0 
b29fe000-b2a00000 ---p b29fe000 00:00 0 
b2a00000-b2a11000 r-xp 00000000 08:01 12697815   /usr/lib/libnssutil3.so.1d
b2a11000-b2a14000 rw-p 00011000 08:01 12697815   /usr/lib/libnssutil3.so.1d
b2a14000-b2a17000 r--s 0000a000 08:01 27051393   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.monitor.ui_3.4.0.v20100608-0100-e3x.jar
b2a1a000-b2a29000 r--s 000da000 08:01 27051422   /usr/local/dev/eclipse/plugins/org.eclipse.ant.ui_3.5.0.v20100427.jar
b2a29000-b2a35000 r-xp 00000000 08:01 16121859   /lib/libgcc_s.so.1
b2a35000-b2a36000 rw-p 0000b000 08:01 16121859   /lib/libgcc_s.so.1
b2a39000-b2a43000 r--s 00070000 08:01 27051576   /usr/local/dev/eclipse/plugins/org.eclipse.jst.jsp.ui_1.1.500.v201006030742.jar
b2a43000-b2a74000 r--s 00240000 08:01 27051546   /usr/local/dev/eclipse/plugins/org.eclipse.debug.ui_3.6.0.v20100601-1530.jar
b2a74000-b2a77000 ---p b2a74000 00:00 0 
b2a77000-b2ac5000 rwxp b2a77000 00:00 0 
b2ac5000-b2b42000 r--p 00000000 08:01 26142443   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf
b2b42000-b2bbf000 r--p 00000000 08:01 26142440   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf
b2bbf000-b2bc2000 ---p b2bbf000 00:00 0 
b2bc2000-b2c10000 rwxp b2bc2000 00:00 0 
b2c10000-b2c19000 r--s 00065000 08:01 27051443   /usr/local/dev/eclipse/plugins/org.eclipse.datatools.sqltools.sqleditor_1.0.1.v201005130745.jar
b2c19000-b2c42000 r--s 00423000 08:01 27051583   /usr/local/dev/eclipse/plugins/org.eclipse.jdt.core_3.6.0.v_A58.jar
b2c42000-b2c4b000 r--s 00056000 08:01 27051285   /usr/local/dev/eclipse/plugins/org.eclipse.team.core_3.5.100.I20100527-0800.jar
b2c63000-b2c6a000 r-xp 00000000 08:01 26105298   /usr/lib/libSM.so.6.0.0
b2c6a000-b2c6b000 rw-p 00006000 08:01 26105298   /usr/lib/libSM.so.6.0.0
b2c6b000-b2c7f000 r--s 00212000 08:01 27051665   /usr/local/dev/eclipse/plugins/org.eclipse.swt.gtk.linux.x86_3.6.0.v3650b.jar
b2c7f000-b2d11000 r--s 008f6000 08:01 27051669   /usr/local/dev/eclipse/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
b2d15000-b2d1f000 r--s 00088000 08:01 27051586   /usr/local/dev/eclipse/plugins/org.eclipse.update.core_3.2.400.v20100512.jar
b2d1f000-b2d26000 r-xp 00000000 08:01 12697918   /usr/lib/libstartup-notification-1.so.0.0.0
b2d26000-b2d27000 rw-p 00007000 08:01 12697918   /usr/lib/libstartup-notification-1.so.0.0.0
b2d27000-b2d2f000 r--s 0004c000 08:01 27051629   /usr/local/dev/eclipse/plugins/org.eclipse.debug.core_3.6.0.v20100519.jar
b2d2f000-b2d39000 r--s 00066000 08:01 27051259   /usr/local/dev/eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.5.0.v20100526-0800.jar
b2d39000-b2d48000 r--s 000b4000 08:01 27051460   /usr/local/dev/eclipse/plugins/org.eclipse.jst.j2ee.ui_1.1.400.v201006030400.jar
b2d48000-b2d51000 r--s 0005d000 08:01 27051738   /usr/local/dev/eclipse/plugins/org.eclipse.wst.sse.core_1.1.500.v201006020308.jar
b2d51000-b2d56000 r--s 00038000 08:01 27051394   /usr/local/dev/eclipse/plugins/org.eclipse.text_3.5.0.v20100601-1300.jar
b2d56000-b2d69000 r--s 000dc000 08:01 27051557   /usr/local/dev/eclipse/plugins/org.eclipse.jface.text_3.6.0.v20100526-0800.jar
b2d69000-b2d75000 r--s 00082000 08:01 27051400   /usr/local/dev/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.6.0.v20100520-0800.jar
b2d75000-b2d80000 r--s 0007d000 08:01 27051313   /usr/local/dev/eclipse/plugins/org.eclipse.ui.editors_3.6.0.v20100520-0800.jar
b2d80000-b2d92000 r--s 000d3000 08:01 27051532   /usr/local/dev/eclipse/plugins/org.eclipse.wst.sse.ui_1.2.0.v201006030742.jar
b2d93000-b2d99000 r--s 00030000 08:01 27051818   /usr/local/dev/eclipse/plugins/org.eclipse.jst.servlet.ui_1.1.400.v201005272100.jar
b2d99000-b2d9e000 r--s 0003c000 08:01 27051363   /usr/local/dev/eclipse/plugins/org.eclipse.emf.edit_2.6.0.v20100614-1136.jar
b2d9e000-b2da1000 r--s 0000a000 08:01 27051820   /usr/local/dev/eclipse/plugins/org.eclipse.wst.jsdt.manipulation_1.0.200.v201004150600.jar
b2da1000-b2dc8000 r--s 00329000 08:01 27051454   /usr/local/dev/eclipse/plugins/org.eclipse.wst.jsdt.core_1.1.0.v201006030738.jar
b2dcb000-b2dd6000 r--s 00098000 08:01 27051829   /usr/local/dev/eclipse/plugins/org.eclipse.jst.jsp.core_1.2.300.v201005271731.jar
b2dd6000-b2ddc000 r--s 00030000 08:01 27051755   /usr/local/dev/eclipse/plugins/org.eclipse.wst.dtd.ui_1.0.500.v201004290328.jar
b2ddc000-b2de2000 r--s 0003e000 08:01 27051649   /usr/local/dev/eclipse/plugins/org.eclipse.wst.css.ui_1.0.500.v201004290328.jar
b2dea000-b2df2000 r--s 00050000 08:01 27051568   /usr/local/dev/eclipse/plugins/org.eclipse.wst.common.modulecore_1.2.0.v201005200200.jar
b2df7000-b2e1d000 r--s 0020a000 08:01 27051282   /usr/local/dev/eclipse/plugins/org.eclipse.ui.ide_3.6.0.I20100601-0800.jar
b2e1d000-b2e27000 r-xp 00000000 08:01 27076215   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-cairo-gtk-3650.so
b2e27000-b2e28000 rw-p 00009000 08:01 27076215   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-cairo-gtk-3650.so
b2e28000-b2e2b000 rw-s 00000000 00:08 2392093    /SYSV00000000 (deleted)
b2e2f000-b2e38000 r--s 00059000 08:01 27051365   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.commons.ui_3.4.0.v20100608-0100-e3x.jar
b2e3b000-b2e46000 r--s 000b1000 08:01 27051856   /usr/local/dev/eclipse/plugins/org.eclipse.core.resources_3.6.0.v20100526-0737.jar
b2e46000-b2e4c000 r--s 0003f000 08:01 27051599   /usr/local/dev/eclipse/plugins/org.eclipse.wst.html.ui_1.0.500.v201006030742.jar
b2e4c000-b2e52000 r-xp 00000000 08:01 26215610   /usr/lib/xulrunner-1.9/components/libdbusservice.so
b2e52000-b2e53000 rw-p 00005000 08:01 26215610   /usr/lib/xulrunner-1.9/components/libdbusservice.so
b2e53000-b2e5a000 r--s 0004f000 08:01 27051250   /usr/local/dev/eclipse/plugins/org.eclipse.wst.server.core_1.1.202.v20100518.jar
b2e5a000-b2e6b000 r--s 000d5000 08:01 27051485   /usr/local/dev/eclipse/plugins/org.eclipse.wst.xml.ui_1.1.100.v201006030742.jar
b2e6d000-b2e71000 r--s 00026000 08:01 27051420   /usr/local/dev/eclipse/plugins/org.eclipse.jst.jee.ui_1.0.300.v201005191301.jar
b2e71000-b2e85000 r--s 000f1000 08:01 27051699   /usr/local/dev/eclipse/plugins/org.eclipse.jface_3.6.0.I20100601-0800.jar
b2e87000-b2e89000 r-xp 00000000 08:01 12796148   /usr/lib/gconv/UTF-16.so
b2e89000-b2e8b000 rw-p 00001000 08:01 12796148   /usr/lib/gconv/UTF-16.so
b2e8b000-b2e91000 r--s 00049000 08:01 27051773   /usr/local/dev/eclipse/plugins/org.apache.commons.httpclient_3.1.0.v201005080502.jar
b2e94000-b2e97000 r-xp 00000000 08:01 26215992   /usr/lib/xulrunner-1.9/libxpcom.so
b2e97000-b2e98000 rw-p 00002000 08:01 26215992   /usr/lib/xulrunner-1.9/libxpcom.so
b2e98000-b2eb4000 r--s 00141000 08:01 27051558   /usr/local/dev/eclipse/plugins/org.eclipse.team.ui_3.5.100.I20100527-0800.jar
b2eb4000-b2eb7000 ---p b2eb4000 00:00 0 
b2eb7000-b2f05000 rwxp b2eb7000 00:00 0 
b2f05000-b2f08000 r-xp 00000000 08:01 12697807   /usr/lib/libplc4.so.0d
b2f08000-b2f09000 rw-p 00002000 08:01 12697807   /usr/lib/libplc4.so.0d
b2f09000-b2f0f000 r--s 00032000 08:01 27051417   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.context.ui_3.4.0.v20100608-0100-e3x.jar
b2f13000-b2f16000 r--s 0000e000 08:01 27051343   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.tasks.search_3.4.0.v20100608-0100-e3x.jar
b2f16000-b2f1a000 r--s 00017000 08:01 27051831   /usr/local/dev/eclipse/plugins/org.eclipse.core.commands_3.6.0.I20100512-1500.jar
b2f1a000-b2f1e000 r--s 00017000 08:01 27051635   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.team.ui_3.4.0.v20100608-0100-e3x.jar
b2f1e000-b2f20000 r--s 0000b000 08:01 27051459   /usr/local/dev/eclipse/plugins/org.eclipse.jst.ws.jaxws.dom.ui_1.0.0.v201004171919.jar
b2f20000-b2f23000 r--s 00019000 08:01 27051242   /usr/local/dev/eclipse/plugins/org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar
b2f23000-b2f28000 r--s 00024000 08:01 27051390   /usr/local/dev/eclipse/plugins/org.eclipse.wst.jsdt.debug.ui_1.0.0.v201005250108.jar
b2f28000-b2f2b000 r--s 00013000 08:01 27051614   /usr/local/dev/eclipse/plugins/org.eclipse.ui.views_3.5.0.I20100527-0800.jar
b2f2b000-b2f2e000 ---p b2f2b000 00:00 0 
b2f2e000-b2f7c000 rwxp b2f2e000 00:00 0 
b2f7c000-b2f9d000 r--s 00607000 08:01 27051373   /usr/local/dev/eclipse/plugins/com.ibm.icu_4.2.1.v20100412.jar
b2f9d000-b2fa2000 r--s 00044000 08:01 27051728   /usr/local/dev/eclipse/plugins/org.eclipse.ui.forms_3.5.0.v20100427.jar
b2fa2000-b2fa5000 r--s 00013000 08:01 26362280   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/jce.jar
b2fa5000-b2fa7000 r--s 0000a000 08:01 27051711   /usr/local/dev/eclipse/plugins/org.eclipse.epp.usagedata.recording_1.3.0.R201005261100.jar
b2faa000-b2fad000 r--s 00014000 08:01 27051603   /usr/local/dev/eclipse/plugins/org.eclipse.core.jobs_3.5.0.v20100515.jar
b2fad000-b2fb0000 r--s 0001a000 08:01 27051835   /usr/local/dev/eclipse/plugins/org.eclipse.jst.common.frameworks_1.1.400.v201005130500.jar
b2fb0000-b2fb2000 r-xp 00000000 08:01 27076246   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/67/1/.cp/os/linux/x86/libunixfile_1_0_0.so
b2fb2000-b2fb3000 rw-p 00001000 08:01 27076246   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/67/1/.cp/os/linux/x86/libunixfile_1_0_0.so
b2fb4000-b2fbe000 r--s 00073000 08:01 27051515   /usr/local/dev/eclipse/plugins/org.eclipse.wst.css.core_1.1.400.v201005261534.jar
b2fbe000-b3047000 r--p 00000000 08:01 26142427   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf
b3047000-b3050000 r-xp 00000000 08:01 27076171   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-atk-gtk-3650.so
b3050000-b3051000 rw-p 00008000 08:01 27076171   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-atk-gtk-3650.so
b3051000-b3056000 r-xp 00000000 08:01 26176698   /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-gif.so
b3056000-b3057000 rw-p 00005000 08:01 26176698   /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-gif.so
b3057000-b3059000 r-xp 00000000 08:01 26173476   /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
b3059000-b305a000 rw-p 00001000 08:01 26173476   /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
b305a000-b30ef000 r--p 00000000 08:01 26142429   /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
b30ef000-b30f5000 r--s 00000000 08:01 14778916   /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86.cache-2
b30f5000-b30f8000 r--s 00000000 08:01 14778914   /var/cache/fontconfig/6eb3985aa4124903f6ff08ba781cd364-x86.cache-2
b30f8000-b30ff000 r--s 00000000 08:01 14778913   /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86.cache-2
b30ff000-b3100000 r--s 00000000 08:01 14778912   /var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86.cache-2
b3100000-b3107000 r--s 00000000 08:01 20439912   /home/michael/.fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86.cache-2
b3107000-b3109000 r--s 0000b000 08:01 27051867   /usr/local/dev/eclipse/plugins/org.eclipse.core.filesystem_1.3.0.v20100526-0737.jar
b3109000-b310d000 r--s 00030000 08:01 27051762   /usr/local/dev/eclipse/plugins/org.eclipse.emf.common_2.6.0.v20100614-1136.jar
b310d000-b3114000 r--s 0003a000 08:01 27051439   /usr/local/dev/eclipse/plugins/org.eclipse.wst.xsl.ui_1.1.0.v201004290328.jar
b3114000-b3117000 r--s 00012000 08:01 27051391   /usr/local/dev/eclipse/plugins/org.eclipse.wst.xml.xpath.ui_1.1.0.v201004290328.jar
b3117000-b311b000 r--s 0001a000 08:01 27051241   /usr/local/dev/eclipse/plugins/org.eclipse.ui.navigator.resources_3.4.200.I20100601-0800.jar
b311b000-b3124000 r--s 0005a000 08:01 27051879   /usr/local/dev/eclipse/plugins/org.eclipse.ui.navigator_3.5.0.I20100601-0800.jar
b3124000-b3129000 r--s 00021000 08:01 27051462   /usr/local/dev/eclipse/plugins/org.eclipse.ui_3.6.0.I20100603-1100.jar
b312a000-b312c000 r-xp 00000000 08:01 12697808   /usr/lib/libplds4.so.0d
b312c000-b312d000 rw-p 00001000 08:01 12697808   /usr/lib/libplds4.so.0d
b312d000-b318d000 rw-s 00000000 00:08 2359324    /SYSV00000000 (deleted)
b318d000-b3191000 r-xp 00000000 08:01 12697624   /usr/lib/libXtst.so.6.1.0
b3191000-b3192000 rw-p 00003000 08:01 12697624   /usr/lib/libXtst.so.6.1.0
b3192000-b3196000 r-xp 00000000 08:01 26104795   /usr/lib/libgthread-2.0.so.0.1600.6
b3196000-b3197000 rw-p 00003000 08:01 26104795   /usr/lib/libgthread-2.0.so.0.1600.6
b3197000-b3199000 r--s 0000f000 08:01 27051289   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.commons.net_3.4.0.v20100608-0100-e3x.jar
b3199000-b319b000 r--s 00001000 08:01 27051623   /usr/local/dev/eclipse/plugins/org.eclipse.update.core.linux_3.2.200.v20100512.jar
b319b000-b319f000 r-xp 00000000 08:01 26176721   /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
b319f000-b31a0000 rw-p 00003000 08:01 26176721   /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
b31a0000-b31a4000 rwxp b31a0000 00:00 0 
b31a4000-b31fd000 r-xp 00000000 08:01 27076161   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-pi-gtk-3650.so
b31fd000-b31ff000 rw-p 00058000 08:01 27076161   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-pi-gtk-3650.so
b31ff000-b32ff000 rw-p b31ff000 00:00 0 
b32ff000-b3300000 ---p b32ff000 00:00 0 
b3300000-b3303000 r-xp 00000000 08:01 27076160   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-gtk-3650.so
b3303000-b3304000 rw-p 00002000 08:01 27076160   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-gtk-3650.so
b3304000-b3305000 rw-p b3304000 00:00 0 
b3308000-b3309000 r--s 00004000 08:01 27051840   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.team.cvs_3.4.0.v20100608-0100-e3x.jar
b3309000-b330b000 r--s 00017000 08:01 27051841   /usr/local/dev/eclipse/plugins/org.eclipse.update.configurator_3.3.100.v20100512.jar
b330b000-b330e000 r--s 0001f000 08:01 27051240   /usr/local/dev/eclipse/plugins/org.eclipse.wst.jsdt.web.core_1.0.300.v201004150625.jar
b330e000-b3313000 r-xp 00000000 08:01 27076680   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-xpcominit-gtk-3650.so
b3313000-b3315000 rw-p 00005000 08:01 27076680   /usr/local/dev/eclipse/configuration/org.eclipse.osgi/bundles/563/1/.cp/libswt-xpcominit-gtk-3650.so
b3315000-b331c000 r--s 00048000 08:01 27051414   /usr/local/dev/eclipse/plugins/org.eclipse.ltk.core.refactoring_3.5.100.v20100526-0800.jar
b331c000-b3320000 r--s 0003b000 08:01 27051931   /usr/local/dev/eclipse/plugins/org.eclipse.help_3.5.0.v20100524.jar
b3320000-b3324000 r--s 00016000 08:01 27051321   /usr/local/dev/eclipse/plugins/org.eclipse.jst.jee_1.0.300.v201005191301.jar
b3324000-b3328000 r--s 00035000 08:01 27051723   /usr/local/dev/eclipse/plugins/org.eclipse.jst.j2ee.navigator.ui_1.1.400.v201004280900.jar
b3328000-b332e000 r--s 00092000 08:01 26362281   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/jsse.jar
b332e000-b3330000 r--s 00011000 08:01 27051673   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.util_1.0.200.v20100503.jar
b3330000-b3333000 r--s 00014000 08:01 27051455   /usr/local/dev/eclipse/plugins/org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar
b3334000-b3337000 r--s 00019000 08:01 27051444   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.preferences_3.3.0.v20100503.jar
b3337000-b3339000 r--s 00001000 08:01 27074562   /usr/local/dev/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800/compatibility.jar
b3339000-b337f000 r--s 003ab000 08:01 27051843   /usr/local/dev/eclipse/plugins/org.eclipse.ui.workbench_3.6.0.I20100603-1100.jar
b337f000-b3382000 r--s 00018000 08:01 27051262   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.context.core_3.4.0.v20100608-0100-e3x.jar
b3382000-b3383000 r--s 00004000 08:01 27051482   /usr/local/dev/eclipse/plugins/org.eclipse.swt_3.6.0.v3650b.jar
b3383000-b3384000 r--s 00007000 08:01 27051894   /usr/local/dev/eclipse/plugins/org.eclipse.update.scheduler_3.2.300.v20100512.jar
b3384000-b3386000 r--s 00005000 08:01 27051844   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.commons.core_3.4.0.v20100608-0100-e3x.jar
b3386000-b338a000 r--s 0002d000 08:01 27051776   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.bugzilla.ui_3.4.0.v20100608-0100-e3x.jar
b338a000-b338d000 ---p b338a000 00:00 0 
b338d000-b33db000 rwxp b338d000 00:00 0 
b33db000-b33dd000 r--s 0000b000 08:01 27051914   /usr/local/dev/eclipse/plugins/org.eclipse.jst.ws.jaxws.dom.integration_1.0.0.v201004171919.jar
b33dd000-b33df000 r-xp 00000000 08:01 12698037   /usr/lib/libXss.so.1.0.0
b33df000-b33e0000 rw-p 00001000 08:01 12698037   /usr/lib/libXss.so.1.0.0
b33e0000-b33e2000 r--s 00025000 08:01 27051548   /usr/local/dev/eclipse/plugins/org.eclipse.wst.standard.schemas_1.0.300.v201004110600.jar
b33e2000-b33e3000 r--s 00002000 08:01 27066519   /usr/local/dev/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520/runtime_registry_compatibility.jar
b33e3000-b33e7000 r--s 00029000 08:01 27051736   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.registry_3.5.0.v20100503.jar
b33e7000-b33e9000 r--s 00008000 08:01 27051538   /usr/local/dev/eclipse/plugins/org.eclipse.epp.usagedata.gathering_1.3.0.R201005261100.jar
b33e9000-b33ec000 ---p b33e9000 00:00 0 
b33ec000-b343a000 rwxp b33ec000 00:00 0 
b343a000-b343d000 ---p b343a000 00:00 0 
b343d000-b348b000 rwxp b343d000 00:00 0 
b348d000-b348f000 r--s 0000f000 08:01 27051575   /usr/local/dev/eclipse/plugins/org.eclipse.wst.web_1.1.400.v201005270700.jar
b348f000-b3492000 r--s 0000f000 08:01 27051415   /usr/local/dev/eclipse/plugins/org.eclipse.jst.server.core_1.2.101.v20100421.jar
b3492000-b3493000 r--s 00002000 08:01 27051848   /usr/local/dev/eclipse/plugins/org.eclipse.wst.xsl.exslt.core_1.0.0.v201005240426.jar
b3493000-b3494000 r--s 00008000 08:01 27051449   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.monitor.core_3.4.0.v20100608-0100-e3x.jar
b3494000-b3496000 r--s 00017000 08:01 27051303   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.common_3.6.0.v20100503.jar
b3496000-b3499000 ---p b3496000 00:00 0 
b3499000-b34e7000 rwxp b3499000 00:00 0 
b34e7000-b34ea000 ---p b34e7000 00:00 0 
b34ea000-b3538000 rwxp b34ea000 00:00 0 
b3538000-b353b000 ---p b3538000 00:00 0 
b353b000-b3589000 rwxp b353b000 00:00 0 
b3589000-b3590000 r-xp 00000000 08:01 27050283   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libnio.so
b3590000-b3591000 rw-p 00006000 08:01 27050283   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libnio.so
b3591000-b35a4000 r-xp 00000000 08:01 27050241   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libnet.so
b35a4000-b35a5000 rw-p 00013000 08:01 27050241   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libnet.so
b35a5000-b35b6000 r--s 00108000 08:01 27051506   /usr/local/dev/eclipse/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
b35b6000-b35e9000 rw-p b35b6000 00:00 0 
b35e9000-b377f000 r--s 02fd0000 08:01 26362317   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/rt.jar
b377f000-b3780000 ---p b377f000 00:00 0 
b3780000-b3800000 rwxp b3780000 00:00 0 
b3800000-b38f9000 rw-p b3800000 00:00 0 
b38f9000-b3900000 ---p b38f9000 00:00 0 
b3901000-b3902000 r--s 00002000 08:01 27051854   /usr/local/dev/eclipse/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20100505-1235.jar
b3902000-b3905000 ---p b3902000 00:00 0 
b3905000-b3953000 rwxp b3905000 00:00 0 
b3953000-b3956000 ---p b3953000 00:00 0 
b3956000-b39d4000 rwxp b3956000 00:00 0 
b39d4000-b39d7000 ---p b39d4000 00:00 0 
b39d7000-b3a25000 rwxp b39d7000 00:00 0 
b3a25000-b3a28000 ---p b3a25000 00:00 0 
b3a28000-b3a76000 rwxp b3a28000 00:00 0 
b3a76000-b3a79000 ---p b3a76000 00:00 0 
b3a79000-b3ac7000 rwxp b3a79000 00:00 0 
b3ac7000-b3ac8000 ---p b3ac7000 00:00 0 
b3ac8000-b3b48000 rwxp b3ac8000 00:00 0 
b3b48000-b3b6d000 rw-p b3b48000 00:00 0 
b3b6d000-b3b6e000 ---p b3b6d000 00:00 0 
b3b6e000-b3bd0000 rw-p b3b6e000 00:00 0 
b3bd0000-b3bea000 rw-p b3bd0000 00:00 0 
b3bea000-b3beb000 ---p b3bea000 00:00 0 
b3beb000-b3c7b000 rw-p b3beb000 00:00 0 
b3c7b000-b3c88000 rw-p b3c7b000 00:00 0 
b3c88000-b3cd0000 rw-p b3c88000 00:00 0 
b3cd0000-b3ceb000 rw-p b3cd0000 00:00 0 
b3ceb000-b3cec000 ---p b3ceb000 00:00 0 
b3cec000-b3d7b000 rw-p b3cec000 00:00 0 
b3d7b000-b3d99000 rw-p b3d7b000 00:00 0 
b3d99000-b3dfb000 rw-p b3d99000 00:00 0 
b3dfb000-b3e2e000 rw-p b3dfb000 00:00 0 
b3e2e000-b3e87000 rw-p b3e2e000 00:00 0 
b3e87000-b480f000 rwxp b3e87000 00:00 0 
b480f000-b5e87000 rw-p b480f000 00:00 0 
b5e87000-b5e96000 r-xp 00000000 08:01 27050252   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libzip.so
b5e96000-b5e98000 rw-p 0000e000 08:01 27050252   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libzip.so
b5e98000-b5ea0000 rw-s 00000000 08:01 19218485   /tmp/hsperfdata_michael/4158
b5ea0000-b5ea6000 r-xp 00000000 08:01 27050235   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/native_threads/libhpi.so
b5ea6000-b5ea7000 rw-p 00006000 08:01 27050235   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/native_threads/libhpi.so
b5ea7000-b5eca000 r-xp 00000000 08:01 27050233   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libjava.so
b5eca000-b5ecc000 rw-p 00023000 08:01 27050233   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libjava.so
b5ecc000-b5ed3000 r-xp 00000000 08:01 16131326   /lib/i686/cmov/librt-2.7.so
b5ed3000-b5ed5000 rw-p 00006000 08:01 16131326   /lib/i686/cmov/librt-2.7.so
b5ed5000-b5ed6000 r--s 00009000 08:01 27051278   /usr/local/dev/eclipse/plugins/org.eclipse.jst.jsf.facelet.ui_1.0.0.v20100602.jar
b5ed6000-b5ee1000 r-xp 00000000 08:01 27050285   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libverify.so
b5ee1000-b5ee2000 rw-p 0000b000 08:01 27050285   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/libverify.so
b5ee2000-b6365000 r-xp 00000000 08:01 27050238   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client/libjvm.so
b6365000-b6386000 rw-p 00483000 08:01 27050238   /usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client/libjvm.so
b6386000-b67a2000 rw-p b6386000 00:00 0 
b67a2000-b6802000 rw-s 00000000 00:08 2326555    /SYSV00000000 (deleted)
b6802000-b6865000 rw-p b6802000 00:00 0 
b6865000-b6897000 r-xp 00000000 08:01 26184176   /usr/lib/gtk-2.0/2.10.0/engines/libsmooth.so
b6897000-b6898000 rw-p 00032000 08:01 26184176   /usr/lib/gtk-2.0/2.10.0/engines/libsmooth.so
b6898000-b68ba000 r--p 00000000 08:01 28508292   /usr/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
b68ba000-b68c4000 r-xp 00000000 08:01 16131316   /lib/i686/cmov/libnss_files-2.7.so
b68c4000-b68c6000 rw-p 00009000 08:01 16131316   /lib/i686/cmov/libnss_files-2.7.so
b68c6000-b68db000 r-xp 00000000 08:01 16131309   /lib/i686/cmov/libnsl-2.7.so
b68db000-b68dd000 rw-p 00014000 08:01 16131309   /lib/i686/cmov/libnsl-2.7.so
b68dd000-b68df000 rw-p b68dd000 00:00 0 
b68df000-b68e6000 r-xp 00000000 08:01 16131324   /lib/i686/cmov/libnss_compat-2.7.so
b68e6000-b68e8000 rw-p 00006000 08:01 16131324   /lib/i686/cmov/libnss_compat-2.7.so
b68e8000-b68e9000 r--s 00004000 08:01 27051659   /usr/local/dev/eclipse/plugins/org.eclipse.mylyn.java.tasks_3.4.0.v20100608-0100-e3x.jar
b68e9000-b68eb000 r--s 0000a000 08:01 27051847   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
b68eb000-b68f3000 r-xp 00000000 08:01 16131319   /lib/i686/cmov/libnss_nis-2.7.so
b68f3000-b68f5000 rw-p 00008000 08:01 16131319   /lib/i686/cmov/libnss_nis-2.7.so
b68f5000-b68fc000 r--s 00000000 08:01 26100231   /usr/lib/gconv/gconv-modules.cache
b68fc000-b690c000 r--p 00000000 08:01 28508291   /usr/share/locale/en_GB/LC_MESSAGES/gtk20.mo
b690c000-b6925000 r-xp 00000000 08:01 12697701   /usr/lib/libatk-1.0.so.0.2209.1
b6925000-b6927000 rw-p 00018000 08:01 12697701   /usr/lib/libatk-1.0.so.0.2209.1
b6927000-b6cae000 r-xp 00000000 08:01 12698138   /usr/lib/libgtk-x11-2.0.so.0.1200.12
b6cae000-b6cb4000 rw-p 00387000 08:01 12698138   /usr/lib/libgtk-x11-2.0.so.0.1200.12
b6cb4000-b6cb5000 rw-p b6cb4000 00:00 0 
b6cb5000-b6cb9000 r-xp 00000000 08:01 26105286   /usr/lib/libXdmcp.so.6.0.0
b6cb9000-b6cba000 rw-p 00003000 08:01 26105286   /usr/lib/libXdmcp.so.6.0.0
b6cba000-b6cbb000 r-xp 00000000 08:01 26105290   /usr/lib/libxcb-xlib.so.0.0.0
b6cbb000-b6cbc000 rw-p 00000000 08:01 26105290   /usr/lib/libxcb-xlib.so.0.0.0
b6cbc000-b6cbe000 r-xp 00000000 08:01 26105284   /usr/lib/libXau.so.6.0.0
b6cbe000-b6cbf000 rw-p 00001000 08:01 26105284   /usr/lib/libXau.so.6.0.0
b6cbf000-b6ce3000 r-xp 00000000 08:01 26104862   /usr/lib/libexpat.so.1.5.2
b6ce3000-b6ce5000 rw-p 00023000 08:01 26104862   /usr/lib/libexpat.so.1.5.2
b6ce5000-b6d0d000 r-xp 00000000 08:01 12697691   /usr/lib/libpixman-1.so.0.10.0
b6d0d000-b6d0e000 rw-p 00027000 08:01 12697691   /usr/lib/libpixman-1.so.0.10.0
b6d0e000-b6d25000 r-xp 00000000 08:01 26105288   /usr/lib/libxcb.so.1.0.0
b6d25000-b6d26000 rw-p 00017000 08:01 26105288   /usr/lib/libxcb.so.1.0.0
b6d26000-b6d2c000 r-xp 00000000 08:01 12697693   /usr/lib/libxcb-render.so.0.0.0
b6d2c000-b6d2d000 rw-p 00005000 08:01 12697693   /usr/lib/libxcb-render.so.0.0.0
b6d2d000-b6d30000 r-xp 00000000 08:01 12697695   /usr/lib/libxcb-render-util.so.0.0.0
b6d30000-b6d31000 rw-p 00002000 08:01 12697695   /usr/lib/libxcb-render-util.so.0.0.0
b6d31000-b6d54000 r-xp 00000000 08:01 26104846   /usr/lib/libpng12.so.0.27.0
b6d54000-b6d55000 rw-p 00022000 08:01 26104846   /usr/lib/libpng12.so.0.27.0
b6d55000-b6d68000 r-xp 00000000 08:01 12697683   /usr/lib/libdirect-1.0.so.0.1.0
b6d68000-b6d69000 rw-p 00012000 08:01 12697683   /usr/lib/libdirect-1.0.so.0.1.0
b6d69000-b6d70000 r-xp 00000000 08:01 12697685   /usr/lib/libfusion-1.0.so.0.1.0
b6d70000-b6d71000 rw-p 00006000 08:01 12697685   /usr/lib/libfusion-1.0.so.0.1.0
b6d71000-b6dd6000 r-xp 00000000 08:01 12697684   /usr/lib/libdirectfb-1.0.so.0.1.0
b6dd6000-b6dd8000 rw-p 00065000 08:01 12697684   /usr/lib/libdirectfb-1.0.so.0.1.0
b6dd8000-b6dec000 r-xp 00000000 08:01 26102045   /usr/lib/libz.so.1.2.3.3
b6dec000-b6ded000 rw-p 00013000 08:01 26102045   /usr/lib/libz.so.1.2.3.3
b6ded000-b6e5e000 r-xp 00000000 08:01 26104812   /usr/lib/libfreetype.so.6.3.18
b6e5e000-b6e62000 rw-p 00070000 08:01 26104812   /usr/lib/libfreetype.so.6.3.18
b6e62000-b6e88000 r-xp 00000000 08:01 12697710   /usr/lib/libpangoft2-1.0.so.0.2002.3
b6e88000-b6e89000 rw-p 00026000 08:01 12697710   /usr/lib/libpangoft2-1.0.so.0.2002.3
b6e89000-b6ea0000 r-xp 00000000 08:01 12698139   /usr/lib/libgdk_pixbuf-2.0.so.0.1200.12
b6ea0000-b6ea1000 rw-p 00017000 08:01 12698139   /usr/lib/libgdk_pixbuf-2.0.so.0.1200.12
b6ea1000-b6ec5000 r-xp 00000000 08:01 16131311   /lib/i686/cmov/libm-2.7.so
b6ec5000-b6ec7000 rw-p 00023000 08:01 16131311   /lib/i686/cmov/libm-2.7.so
b6ec7000-b6ecb000 r-xp 00000000 08:01 26105294   /usr/lib/libXfixes.so.3.1.0
b6ecb000-b6ecc000 rw-p 00003000 08:01 26105294   /usr/lib/libXfixes.so.3.1.0
b6ecc000-b6ece000 r-xp 00000000 08:01 12697614   /usr/lib/libXdamage.so.1.1.0
b6ece000-b6ecf000 rw-p 00001000 08:01 12697614   /usr/lib/libXdamage.so.1.1.0
b6ecf000-b6ed1000 r-xp 00000000 08:01 12697717   /usr/lib/libXcomposite.so.1.0.0
b6ed1000-b6ed2000 rw-p 00001000 08:01 12697717   /usr/lib/libXcomposite.so.1.0.0
b6ed2000-b6eda000 r-xp 00000000 08:01 26105422   /usr/lib/libXcursor.so.1.0.2
b6eda000-b6edb000 rw-p 00007000 08:01 26105422   /usr/lib/libXcursor.so.1.0.2
b6edb000-b6ee0000 r-xp 00000000 08:01 12697632   /usr/lib/libXrandr.so.2.1.0
b6ee0000-b6ee1000 rw-p 00005000 08:01 12697632   /usr/lib/libXrandr.so.2.1.0
b6ee1000-b6ee8000 r-xp 00000000 08:01 12697620   /usr/lib/libXi.so.6.0.0
b6ee8000-b6ee9000 rw-p 00007000 08:01 12697620   /usr/lib/libXi.so.6.0.0
b6ee9000-b6eeb000 r-xp 00000000 08:01 12697622   /usr/lib/libXinerama.so.1.0.0
b6eeb000-b6eec000 rw-p 00001000 08:01 12697622   /usr/lib/libXinerama.so.1.0.0
b6eec000-b6fd7000 r-xp 00000000 08:01 26105292   /usr/lib/libX11.so.6.2.0
b6fd7000-b6fdb000 rw-p 000ea000 08:01 26105292   /usr/lib/libX11.so.6.2.0
b6fdb000-b6fe3000 r-xp 00000000 08:01 26105420   /usr/lib/libXrender.so.1.3.0
b6fe3000-b6fe4000 rw-p 00007000 08:01 26105420   /usr/lib/libXrender.so.1.3.0
b6fe4000-b6ff1000 r-xp 00000000 08:01 12698136   /usr/lib/libXext.so.6.4.0
b6ff1000-b6ff2000 rw-p 0000d000 08:01 12698136   /usr/lib/libXext.so.6.4.0
b6ff2000-b701c000 r-xp 00000000 08:01 26104906   /usr/lib/libfontconfig.so.1.3.0
b701c000-b701d000 rw-p 0002a000 08:01 26104906   /usr/lib/libfontconfig.so.1.3.0
b701d000-b7020000 r-xp 00000000 08:01 26104796   /usr/lib/libgmodule-2.0.so.0.1600.6
b7020000-b7021000 rw-p 00002000 08:01 26104796   /usr/lib/libgmodule-2.0.so.0.1600.6
b7021000-b708b000 r-xp 00000000 08:01 12697697   /usr/lib/libcairo.so.2.17.5
b708b000-b708d000 rw-p 0006a000 08:01 12697697   /usr/lib/libcairo.so.2.17.5
b708d000-b70cb000 r-xp 00000000 08:01 12697711   /usr/lib/libpango-1.0.so.0.2002.3
b70cb000-b70cd000 rw-p 0003d000 08:01 12697711   /usr/lib/libpango-1.0.so.0.2002.3
b70cd000-b70d6000 r-xp 00000000 08:01 12697709   /usr/lib/libpangocairo-1.0.so.0.2002.3
b70d6000-b70d7000 rw-p 00008000 08:01 12697709   /usr/lib/libpangocairo-1.0.so.0.2002.3
b70d7000-b715b000 r-xp 00000000 08:01 12698304   /usr/lib/libgdk-x11-2.0.so.0.1200.12
b715b000-b715e000 rw-p 00083000 08:01 12698304   /usr/lib/libgdk-x11-2.0.so.0.1200.12
b715e000-b7186000 r-xp 00000000 08:01 26104788   /usr/lib/libpcre.so.3.12.1
b7186000-b7187000 rw-p 00027000 08:01 26104788   /usr/lib/libpcre.so.3.12.1
b7187000-b723b000 r-xp 00000000 08:01 26104797   /usr/lib/libglib-2.0.so.0.1600.6
b723b000-b723c000 rw-p 000b4000 08:01 26104797   /usr/lib/libglib-2.0.so.0.1600.6
b723c000-b7277000 r-xp 00000000 08:01 26104798   /usr/lib/libgobject-2.0.so.0.1600.6
b7277000-b7278000 rw-p 0003b000 08:01 26104798   /usr/lib/libgobject-2.0.so.0.1600.6
b7278000-b727f000 rw-p b7278000 00:00 0 
b727f000-b7282000 r-xp 00000000 08:01 26176699   /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-bmp.so
b7282000-b7283000 rw-p 00002000 08:01 26176699   /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-bmp.so
b7283000-b7284000 r--p b7283000 00:00 0 
b7284000-b7285000 r--p 00000000 08:01 26100251   /usr/share/locale/en_GB/LC_MESSAGES/libc.mo
b7285000-b7368000 r--p 00143000 08:01 26118153   /usr/lib/locale/locale-archive
b7368000-b7568000 r--p 00000000 08:01 26118153   /usr/lib/locale/locale-archive
b7568000-b7569000 rw-p b7568000 00:00 0 
b7569000-b76be000 r-xp 00000000 08:01 16131321   /lib/i686/cmov/libc-2.7.so
b76be000-b76bf000 r--p 00155000 08:01 16131321   /lib/i686/cmov/libc-2.7.so
b76bf000-b76c1000 rw-p 00156000 08:01 16131321   /lib/i686/cmov/libc-2.7.so
b76c1000-b76c5000 rw-p b76c1000 00:00 0 
b76c5000-b76c7000 r-xp 00000000 08:01 16131315   /lib/i686/cmov/libdl-2.7.so
b76c7000-b76c9000 rw-p 00001000 08:01 16131315   /lib/i686/cmov/libdl-2.7.so
b76c9000-b76de000 r-xp 00000000 08:01 16131313   /lib/i686/cmov/libpthread-2.7.so
b76de000-b76e0000 rw-p 00014000 08:01 16131313   /lib/i686/cmov/libpthread-2.7.so
b76e0000-b76e2000 rw-p b76e0000 00:00 0 
b76e2000-b76ee000 r-xp 00000000 08:01 27066492   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.0.v20100503/eclipse_1307.so
b76ee000-b76ef000 rw-p 0000c000 08:01 27066492   /usr/local/dev/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.0.v20100503/eclipse_1307.so
b76ef000-b76f1000 rw-p b76ef000 00:00 0 
b76f1000-b76f2000 r-xp b76f1000 00:00 0          [vdso]
b76f2000-b770c000 r-xp 00000000 08:01 16123515   /lib/ld-2.7.so
b770c000-b770e000 rw-p 0001a000 08:01 16123515   /lib/ld-2.7.so
bffae000-bffb1000 ---p bffae000 00:00 0 
bffb1000-bfffe000 rwxp bffb2000 00:00 0          [stack]
bfffe000-bffff000 rw-p bffff000 00:00 0 

VM Arguments:
jvm_args: -Dosgi.requiredJavaVersion=1.5 -XX:MaxPermSize=256m -Xms40m -Xmx512m 
java_command: <unknown>
Launcher Type: generic

Environment Variables:
PATH=/usr/local/bin:/usr/bin:/bin:/usr/games
USERNAME=michael
LD_LIBRARY_PATH=/usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.20/jre/lib/i386:/usr/lib/xulrunner-1.9:/usr/lib/xulrunner-1.9
SHELL=/bin/bash
DISPLAY=:0.0

Signal Handlers:
SIGSEGV: [libjvm.so+0x418670], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGBUS: [libjvm.so+0x418670], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGFPE: [libjvm.so+0x33e070], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGPIPE: SIG_IGN, sa_mask[0]=0x00001000, sa_flags=0x10000000
SIGXFSZ: [libjvm.so+0x33e070], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGILL: [libjvm.so+0x33e070], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGUSR2: [libjvm.so+0x340cb0], sa_mask[0]=0x00000000, sa_flags=0x10000004
SIGHUP: [libjvm.so+0x3409e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGINT: [libjvm.so+0x3409e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGTERM: [libjvm.so+0x3409e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGQUIT: [libjvm.so+0x3409e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004


---------------  S Y S T E M  ---------------

OS:5.0.5

uname:Linux 2.6.26-2-686 #1 SMP Mon Jun 21 05:58:44 UTC 2010 i686
libc:glibc 2.7 NPTL 2.7 
rlimit: STACK 8192k, CORE 0k, NPROC 27644, NOFILE 1024, AS infinity
load average:0.28 0.14 0.10

CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 15 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3

Memory: 4k page, physical 3506368k(2265116k free), swap 2650684k(2650684k free)

vm_info: Java HotSpot(TM) Client VM (16.3-b01) for linux-x86 JRE (1.6.0_20-b02), built on Apr 12 2010 14:15:08 by "java_re" with gcc 3.2.1-7a (J2SE release)

time: Mon Jul 12 18:01:07 2010
elapsed time: 20102 seconds
Comment 3 Chris Jaun CLA 2010-07-12 15:44:19 EDT
1. Created a JavaScript project with defaults
2. Created a new JS file
3. Copied in your example
4. On the line above your final closing brace I typed "this." and attempted content assist.

It worked as expected with no crash. Did I perform the steps correctly?

I am testing with WTP 3.2.1.
Comment 4 shaidar.haran CLA 2010-07-12 16:05:31 EDT
(In reply to comment #3)
> 1. Created a JavaScript project with defaults
> 2. Created a new JS file
> 3. Copied in your example
> 4. On the line above your final closing brace I typed "this." and attempted
> content assist.
> 
> It worked as expected with no crash. Did I perform the steps correctly?
> 
> I am testing with WTP 3.2.1.

Yes, the steps are correct.

Like I said, I'm using the current package available on eclipse.org (Eclipse IDE for Java EE Developers), downloaded last week, with no changes made, or additional features installed. This package includes:

-) Eclipse Web Developer Tools	
Version: 3.2.0.v201005241510-7O7CFb3EMf84nP-FHuc10NTz--M3	
-) JavaScript Development Tools
Version: 1.2.0.v201005270528-7C78FGDF9JgLWLMBWz-Ose6
Build id: 20100615235519
Comment 5 Chris Jaun CLA 2010-07-12 16:11:23 EDT
You can reproduce this was a brand new project? With only that single file in it?
Comment 6 shaidar.haran CLA 2010-07-12 16:29:57 EDT
(In reply to comment #5)
> You can reproduce this was a brand new project? With only that single file in
> it?

As a matter of fact, I can reproduce it with a completely new installation of said package, with no other projects or files.
Comment 7 Jacek Pospychala CLA 2010-07-13 06:07:23 EDT
crash happens only on Linux, probably only on Ubuntu, because of SWT/gtk issue that causes crash on unhandled exceptions in SWT handlers.
This can be tracked on other platform by catching unhandled exceptions.

It's similar to bug 318697 - IllegalArgumentException in Util.scanTypeSignature(char[], int) line: 2240
Comment 8 Paul Webster CLA 2010-07-13 07:43:10 EDT
This might be the Assistive Technologies bug:
http://ubuntuforums.org/showthread.php?p=8448853

Turn off assistive technologies.

PW
Comment 9 Jacek Pospychala CLA 2010-07-13 08:03:07 EDT
(In reply to comment #8)
> This might be the Assistive Technologies bug:

that'd be interesting. I just noticed, this bug's reporter uses Debian 5.0.5 - Does Debian have Assistive Technologies? Anyway, error seems to be similar - log points to somewhere inside libpango.
For reference, SWT issue I was mentioning is bug 285749
Comment 10 shaidar.haran CLA 2010-07-13 09:34:09 EDT
(In reply to comment #9)
> (In reply to comment #8)
> > This might be the Assistive Technologies bug:
> 
> that'd be interesting. I just noticed, this bug's reporter uses Debian 5.0.5 -
> Does Debian have Assistive Technologies? Anyway, error seems to be similar -
> log points to somewhere inside libpango.
> For reference, SWT issue I was mentioning is bug 285749

It does, they are, however, disabled by default. (I.e. they are also disabled on my system.)

By the way, Eclipse Galileo with 

JavaScript Developer Tools

Version: 1.1.2.v200908101420-77-FGDCcNBDjBXMoBbFb
Build id: 20100211202452 

does not have that problem.
Comment 11 Chris Jaun CLA 2010-07-13 09:48:24 EDT
So, is this a general linux platform issue not specifically related to JSDT?

I am not an expert on the Linux issues being discussed in the comments.
Comment 12 Jacek Pospychala CLA 2010-07-13 11:14:10 EDT
(In reply to comment #11)
> So, is this a general linux platform issue not specifically related to JSDT?
> 
> I am not an expert on the Linux issues being discussed in the comments.

there are two issues:
1. eclipse crashes on linux in an unhandled exceptions in at least some handlers.
2. jsdt throws an unhandled exception (on all platforms)

On Win or Mac, If you try the sample code from Shaidar, and set an exception breakpoint for IllegalArgumentException, you should see that it's thrown.
You may want to narrow down catching IAE only to package org.eclipse.wst.jsdt.core, otherwise there's lot more IAE's thrown all the time.

At least for me, the IAE is thrown in Signature class, same as in bug 318697.
It's not catched anywhere in JSDT. If it's catched, or not thrown then Eclipse doesn't crash on Linux.
Comment 13 Felipe Heidrich CLA 2010-08-10 10:27:44 EDT
Jacek Pospychala,

Can you fix the problem mention in comment 12, item 2 ?
(that is the real fix)

For the item 1, I'm marking all duplicates of Bug322222.
Comment 14 Nitin Dahyabhai CLA 2010-08-10 10:54:29 EDT
marking as duplicate of bug 322222 with bug 318697 still open for the IllegalArgumentException.

*** This bug has been marked as a duplicate of bug 322222 ***