Bug 32204 - Signal 11 at at org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_pulse(Native Method)
Summary: Signal 11 at at org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_pulse(Native...
Status: RESOLVED INVALID
Alias: None
Product: Platform
Classification: Eclipse Project
Component: SWT (show other bugs)
Version: 2.1   Edit
Hardware: PC Linux-GTK
: P3 major with 3 votes (vote)
Target Milestone: 2.1 RC3   Edit
Assignee: Felipe Heidrich CLA
QA Contact:
URL:
Whiteboard:
Keywords:
: 31608 32625 32800 34021 34201 34227 34309 34891 34986 35281 35532 36182 36417 (view as bug list)
Depends on:
Blocks:
 
Reported: 2003-02-19 03:53 EST by Jarkko Lietolahti CLA
Modified: 2004-08-01 06:48 EDT (History)
20 users (show)

See Also:


Attachments
Java HS error log (16.57 KB, text/plain)
2003-02-19 03:54 EST, Jarkko Lietolahti CLA
no flags Details
Different theme different problems. (18.23 KB, text/plain)
2003-02-28 16:53 EST, Sejal Patel CLA
no flags Details
RC2 - Saving preferences (16.55 KB, text/plain)
2003-03-11 15:01 EST, Sejal Patel CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jarkko Lietolahti CLA 2003-02-19 03:53:41 EST
Using  GTK2 2.2 (from RedHat RawHide, originally RH8.0) causes Eclipse to crash
when trying to give a pulse to progress bar, which happens in many cases like
creating a new project, closing a project etc..

authconfig-gtk-4.2.12-3
mtr-gtk-0.49-7
gtkhtml2-2.2.0-4
pygtk2-1.99.14-4
usermode-gtk-1.63-1
gtkhtml-1.1.8-3
pygtk2-libglade-1.99.14-4
gtkam-0.1.4-6
gnome-python2-gtkhtml2-1.99.14-5
gtk2-2.2.1-1
gtk+-devel-1.2.10-25
gtk2-engines-2.2.0-2
gtk-engines-0.11-16
gtk2-debuginfo-2.2.1-1
gtk2-devel-2.2.1-1
pygtk2-devel-1.99.14-4
gtk+-1.2.10-25

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x5161BF25
Function=(null)+0x5161BF25
Library=/usr/lib/libgdk-x11-2.0.so.0
 
NOTE: We are unable to locate the function name symbol for the error
      just occurred. Please refer to release documentation for possible
      reason and solutions.
 
 
Current Java thread:
        at org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_pulse(Native Method)
        - locked <0x4c5b6118> (a java.lang.Class)
        at org.eclipse.swt.widgets.ProgressBar.timerProc(ProgressBar.java:203)
        at org.eclipse.swt.widgets.Display.windowTimerProc(Display.java:1930)
        at org.eclipse.swt.internal.gtk.OS.gtk_widget_show_now(Native Method)
        - locked <0x4c5b6118> (a java.lang.Class)
        at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:938)
        at org.eclipse.swt.widgets.Shell.open(Shell.java:689)
        at org.eclipse.jface.window.Window.open(Window.java:553)
        at
org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:345)
        at
org.eclipse.jdt.internal.ui.dialogs.TypeSelectionDialog.open(TypeSelectionDialog.java:196)
        at
org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:53)
        at
org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:74)
        at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:250)


I found an article somewhere detailing the differences between GTK1 and GTK2
included some differences in the ProgressBar API. A simple fix was to uncomment
the call to OS.gtk_progress_bar_pulse in /org.eclipse.swt/Eclipse
SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java.

int timerProc (int widget) {
        // OS.gtk_progress_bar_pulse (handle);
        return 1;
}

This is not the correct fix, but atleast i get Eclipse running. While debugging
the problem i also noticed that the timerProc is called very often even when
there's no visible ProgressBar in the display, but i might be misinterpreting
the data.
Comment 1 Jarkko Lietolahti CLA 2003-02-19 03:54:36 EST
Created attachment 3562 [details]
Java HS error log
Comment 2 Steve Northover CLA 2003-02-19 12:29:59 EST
FH to investigate the GP.

It is true that we pulse the progress bar when it is not visible.  To fix this 
problem, we'd need to know when it becomes visible or when an ancestor becomes 
visible.  Is there a GTK signal for this case?
Comment 3 Veronika Irvine CLA 2003-02-24 13:21:33 EST
*** Bug 32625 has been marked as a duplicate of this bug. ***
Comment 4 hui zhang CLA 2003-02-26 10:18:11 EST
gtk2 compiled from source (http://www.gnome.org/start/2.2/) doesn't cause the
same problem.  wondering why?
Comment 5 Jarkko Lietolahti CLA 2003-02-26 17:49:02 EST
The problem was only with gtk2 2.2.1, are you certain you recompiled the 2.2.1
version and not the 2.2.0? 
Comment 6 hui zhang CLA 2003-02-26 22:32:13 EST
It's 2.2.1.  See the pkg-config output below

I also posted it as a redhat phoebe-3 bug:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=85155

*****************
[huiz@localhost pkgconfig]$ env |grep PKG_CONFIG_PATH
PKG_CONFIG_PATH=/home/huiz/gtk2/lib/pkgconfig

[huiz@localhost pkgconfig]$ pkg-config --modversion gtk+-2.0 --libs
2.2.1
-Wl,--export-dynamic -L/home/huiz/gtk2/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0
-lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0
-lgmodule-2.0 -ldl -lglib-2.0
*****************
Comment 7 Jarkko Lietolahti CLA 2003-02-27 05:47:05 EST
Yes, recompiling gtk2-2.2.1 fixes the problem. 
I took gtk2-2.2.1-1.src.rpm from
ftp.redhat.com/pub/redhat/linux/rawhide/SRPMS/SRPMS ,rebuild it and voila,
eclipse-SDK-N20030227-linux-gtk.zip  works out-of-the-box. Recompiled with
gcc-3.2.1-2.
Comment 8 Veronika Irvine CLA 2003-02-27 10:03:28 EST
*** Bug 32800 has been marked as a duplicate of this bug. ***
Comment 9 hui zhang CLA 2003-02-27 10:41:36 EST
redhat people think it is a bug in eclipse, not their packaging of gtk2.
(https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=85155)
i can't make sense of it myself since my own compiled version works just fine.
(see my posts above: comment 4 and 6)

anyone can explain that to me?
Comment 10 Sejal Patel CLA 2003-02-27 10:56:03 EST
I'm using Debian's version of gtk 2.2.1 and I also got this exact same problem.
Comment 11 Veronika Irvine CLA 2003-02-27 15:01:22 EST
*** Bug 31608 has been marked as a duplicate of this bug. ***
Comment 12 Jarkko Lietolahti CLA 2003-02-28 02:47:39 EST
Uuh, after reboot the same problem reappeared. This's really strange, after i
recompiled the gtk2-rpm, installed the new gtk2-rpm (rpm -e gtk2 && rpm -i gt2)
everything worked ok. But after reboot the same problem appeared again..

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4D6B4F25
Function=(null)+0x4D6B4F25
Library=/usr/lib/libgdk-x11-2.0.so.0
 
NOTE: We are unable to locate the function name symbol for the error
      just occurred. Please refer to release documentation for possible
      reason and solutions.
 
 
Current Java thread:
        at org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_pulse(Native Method)
        - locked <0x486234d8> (a java.lang.Class)
        at org.eclipse.swt.widgets.ProgressBar.timerProc(ProgressBar.java:203)
        at org.eclipse.swt.widgets.Display.windowTimerProc(Display.java:1935)
        at org.eclipse.swt.internal.gtk.OS.gtk_widget_show_now(Native Method)
        - locked <0x486234d8> (a java.lang.Class)
        at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:934)
        at org.eclipse.swt.widgets.Shell.open(Shell.java:689)
        at org.eclipse.jface.window.Window.open(Window.java:553)
        at
org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:345)
        at org.eclipse.debug.ui.DebugUITools.launch(DebugUITools.java:493)
        at
org.eclipse.debug.ui.actions.AbstractLaunchToolbarAction.run(AbstractLaunchToolbarAction.java:65)
        at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:250)
        at
org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:202)
        at
org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:456)
        at
org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:403)
        at
org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:397)
        at
org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:72)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:77)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:902)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1507)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1324)
        at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1271)
        at org.eclipse.ui.internal.Workbench.run(Workbench.java:1254)
        at
org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:845)
        at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at org.eclipse.core.launcher.Main.basicRun(Main.java:247)
        at org.eclipse.core.launcher.Main.run(Main.java:703)
        at org.eclipse.core.launcher.Main.main(Main.java:539)
 
Dynamic libraries:
08048000-0804e000 r-xp 00000000 03:02 1518398    /opt/j2sdk1.4.1_01/bin/java
0804e000-0804f000 rw-p 00005000 03:02 1518398    /opt/j2sdk1.4.1_01/bin/java
40000000-40015000 r-xp 00000000 03:02 114947     /lib/ld-2.3.1.so
40015000-40016000 rw-p 00014000 03:02 114947     /lib/ld-2.3.1.so
40017000-40020000 r-xp 00000000 03:02 310398    
/opt/j2sdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
40020000-40021000 rw-p 00008000 03:02 310398    
/opt/j2sdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
40022000-40025000 r--s 00000000 03:02 1143067   
/opt/j2sdk1.4.1_01/jre/lib/ext/dnsns.jar
40025000-40026000 r--s 00000000 03:02 2059684   
/opt/eclipse-270203/plugins/org.eclipse.ui_2.1.0/ui.jar
40026000-40030000 r-xp 00000000 03:02 1355370    /lib/tls/libpthread-0.24.so
40030000-40031000 rw-p 0000a000 03:02 1355370    /lib/tls/libpthread-0.24.so
40033000-40035000 r-xp 00000000 03:02 114960     /lib/libdl-2.3.1.so
40035000-40036000 rw-p 00002000 03:02 114960     /lib/libdl-2.3.1.so
40037000-4034f000 r-xp 00000000 03:02 1224446   
/opt/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
4034f000-40503000 rw-p 00317000 03:02 1224446   
/opt/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
40513000-40525000 r-xp 00000000 03:02 114964     /lib/libnsl-2.3.1.so
40525000-40526000 rw-p 00011000 03:02 114964     /lib/libnsl-2.3.1.so
40528000-40549000 r-xp 00000000 03:02 1355369    /lib/tls/libm-2.3.1.so
40549000-4054a000 rw-p 00020000 03:02 1355369    /lib/tls/libm-2.3.1.so
4054a000-4055a000 r-xp 00000000 03:02 310404    
/opt/j2sdk1.4.1_01/jre/lib/i386/libverify.so
4055a000-4055c000 rw-p 0000f000 03:02 310404    
/opt/j2sdk1.4.1_01/jre/lib/i386/libverify.so
4055c000-4057d000 r-xp 00000000 03:02 310405    
/opt/j2sdk1.4.1_01/jre/lib/i386/libjava.so
4057d000-4057f000 rw-p 00020000 03:02 310405    
/opt/j2sdk1.4.1_01/jre/lib/i386/libjava.so
4057f000-40594000 r-xp 00000000 03:02 310407    
/opt/j2sdk1.4.1_01/jre/lib/i386/libzip.so
40594000-40596000 rw-p 00014000 03:02 310407    
/opt/j2sdk1.4.1_01/jre/lib/i386/libzip.so
40596000-41c64000 r--s 00000000 03:02 310454     /opt/j2sdk1.4.1_01/jre/lib/rt.jar
41ca7000-41cbe000 r--s 00000000 03:02 310428    
/opt/j2sdk1.4.1_01/jre/lib/sunrsasign.jar
41cbe000-41d2f000 r--s 00000000 03:02 310430     /opt/j2sdk1.4.1_01/jre/lib/jsse.jar
41d2f000-41d42000 r--s 00000000 03:02 310429     /opt/j2sdk1.4.1_01/jre/lib/jce.jar
41d42000-41ffe000 r--s 00000000 03:02 310451    
/opt/j2sdk1.4.1_01/jre/lib/charsets.jar
41ffe000-41fff000 r-xp 00000000 03:02 1715432   
/opt/eclipse-270203/plugins/org.eclipse.core.resources.linux_2.1.0/os/linux/x86/libcore_2_1_0a.so
41fff000-42000000 rw-p 00001000 03:02 1715432   
/opt/eclipse-270203/plugins/org.eclipse.core.resources.linux_2.1.0/os/linux/x86/libcore_2_1_0a.so
42000000-4212e000 r-xp 00000000 03:02 1355361    /lib/tls/libc-2.3.1.so
4212e000-42131000 rw-p 0012e000 03:02 1355361    /lib/tls/libc-2.3.1.so
441db000-441e0000 r--s 00000000 03:02 2292729    /opt/eclipse-270203/startup.jar
4c3e0000-4c5e0000 r--p 00000000 03:02 473401     /usr/lib/locale/locale-archive
4c5e0000-4c5ee000 r--s 00000000 03:02 1143069   
/opt/j2sdk1.4.1_01/jre/lib/ext/ldapsec.jar
4c5ef000-4c5fa000 r-xp 00000000 03:02 114970     /lib/libnss_files-2.3.1.so
4c5fa000-4c5fb000 rw-p 0000a000 03:02 114970     /lib/libnss_files-2.3.1.so
4c7fb000-4c818000 r--s 00000000 03:02 1143066   
/opt/j2sdk1.4.1_01/jre/lib/ext/sunjce_provider.jar
4c818000-4c8b7000 r--s 00000000 03:02 1143068   
/opt/j2sdk1.4.1_01/jre/lib/ext/localedata.jar
4c937000-4c94f000 r--s 00000000 03:02 2285414   
/opt/eclipse-270203/plugins/org.eclipse.core.boot_2.1.0/boot.jar
4c94f000-4c984000 r--s 00000000 03:02 2285428   
/opt/eclipse-270203/plugins/org.eclipse.core.runtime_2.1.0/runtime.jar
4c984000-4c9d2000 r--s 00000000 03:02 2271375   
/opt/eclipse-270203/plugins/org.eclipse.ui.views_2.1.0/views.jar
4c9d2000-4cbe6000 r--s 00000000 03:02 1632091   
/opt/eclipse-270203/plugins/org.eclipse.ui.workbench_2.1.0/workbench.jar
4cbe6000-4cc51000 r--s 00000000 03:02 2292626   
/opt/eclipse-270203/plugins/org.eclipse.jface_2.1.0/jface.jar
4cc51000-4cd00000 r--s 00000000 03:02 1603188   
/opt/eclipse-270203/plugins/org.eclipse.swt.gtk_2.1.0/ws/gtk/swt.jar
4cd00000-4cd8d000 r--s 00000000 03:02 2285480   
/opt/eclipse-270203/plugins/org.eclipse.core.resources_2.1.0/resources.jar
4cd8d000-4cda3000 r--s 00000000 03:02 2285424   
/opt/eclipse-270203/plugins/org.apache.xerces_4.0.7/xmlParserAPIs.jar
4cda3000-4cec2000 r--s 00000000 03:02 2285423   
/opt/eclipse-270203/plugins/org.apache.xerces_4.0.7/xercesImpl.jar
4cec2000-4cf28000 r--s 00000000 03:02 1501704   
/opt/eclipse-270203/plugins/org.eclipse.team.cvs.core_2.1.0/cvs.jar
4cf28000-4cf94000 r--s 00000000 03:02 18795     
/opt/eclipse-270203/plugins/com.objfac.xmleditor_0.2.8/xmleditor.jar
4cf94000-4cf9c000 r--s 00000000 03:02 18793     
/opt/eclipse-270203/plugins/com.objfac.xmleditor_0.2.8/util.jar
4cf9c000-4cfbf000 r--s 00000000 03:02 18794     
/opt/eclipse-270203/plugins/com.objfac.xmleditor_0.2.8/xml.jar
4cfbf000-4cfc2000 r--s 00000000 03:02 18789     
/opt/eclipse-270203/plugins/com.objfac.xmleditor_0.2.8/moved.jar
4cfc2000-4cff4000 r--s 00000000 03:02 1715427   
/opt/eclipse-270203/plugins/org.eclipse.search_2.1.0/search.jar
4cff4000-4d000000 r--s 00000000 03:02 2276491   
/opt/eclipse-270203/plugins/org.eclipse.pde_2.1.0/pde.jar
4d000000-4d256000 r--s 00000000 03:02 901384    
/opt/eclipse-270203/plugins/org.eclipse.jdt.core_2.1.0/jdtcore.jar
4d256000-4d295000 r--s 00000000 03:02 1358150   
/opt/eclipse-270203/plugins/org.eclipse.jdt.junit_2.1.0/junitsupport.jar
4d295000-4d2ac000 r--s 00000000 03:02 1292386   
/opt/eclipse-270203/plugins/org.eclipse.help.ui_2.1.0/helpworkbench.jar
4d2ac000-4d30c000 r--s 00000000 03:02 719160    
/opt/eclipse-270203/plugins/org.eclipse.compare_2.1.0/compare.jar
4d38c000-4d393000 r--s 00000000 03:02 1603187   
/opt/eclipse-270203/plugins/org.eclipse.swt.gtk_2.1.0/ws/gtk/swt-pi.jar
4d393000-4d3bd000 r-xp 00000000 03:02 868289    
/opt/eclipse-270203/plugins/org.eclipse.swt.gtk_2.1.0/os/linux/x86/libswt-pi-gtk-2131.so
4d3bd000-4d3be000 rw-p 00029000 03:02 868289    
/opt/eclipse-270203/plugins/org.eclipse.swt.gtk_2.1.0/os/linux/x86/libswt-pi-gtk-2131.so
4d3bf000-4d3c5000 r--s 00000000 03:02 1860668    /usr/lib/gconv/gconv-modules.cache
4d3c5000-4d3c6000 r-xp 00000000 03:02 621219    
/usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
4d3c6000-4d3c7000 rw-p 00000000 03:02 621219    
/usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
4d3c7000-4d3c8000 r-xp 00000000 03:02 1860613    /usr/lib/gconv/ISO8859-1.so
4d3c8000-4d3c9000 rw-p 00001000 03:02 1860613    /usr/lib/gconv/ISO8859-1.so
4d3c9000-4d3cb000 r-xp 00000000 03:02 506340    
/usr/lib/pango/1.2.0/modules/pango-basic-xft.so
4d3cb000-4d3cc000 rw-p 00001000 03:02 506340    
/usr/lib/pango/1.2.0/modules/pango-basic-xft.so
4d3ce000-4d3d2000 r-xp 00000000 03:02 1275579    /usr/lib/libgthread-2.0.so.0.200.1
4d3d2000-4d3d3000 rw-p 00003000 03:02 1275579    /usr/lib/libgthread-2.0.so.0.200.1
4d3d3000-4d43c000 r-xp 00000000 03:02 1275573    /usr/lib/libglib-2.0.so.0.200.1
4d43c000-4d43d000 rw-p 00069000 03:02 1275573    /usr/lib/libglib-2.0.so.0.200.1
4d43d000-4d686000 r-xp 00000000 03:02 362066     /usr/lib/libgtk-x11-2.0.so.0.200.1
4d686000-4d68f000 rw-p 00248000 03:02 362066     /usr/lib/libgtk-x11-2.0.so.0.200.1
4d691000-4d6fa000 r-xp 00000000 03:02 359579     /usr/lib/libgdk-x11-2.0.so.0.200.1
4d6fa000-4d6ff000 rw-p 00069000 03:02 359579     /usr/lib/libgdk-x11-2.0.so.0.200.1
4d6ff000-4d716000 r-xp 00000000 03:02 1375378    /usr/lib/libatk-1.0.so.0.200.0
4d716000-4d718000 rw-p 00016000 03:02 1375378    /usr/lib/libatk-1.0.so.0.200.0
4d718000-4d72a000 r-xp 00000000 03:02 359582    
/usr/lib/libgdk_pixbuf-2.0.so.0.200.1
4d72a000-4d72b000 rw-p 00011000 03:02 359582    
/usr/lib/libgdk_pixbuf-2.0.so.0.200.1
4d72b000-4d737000 r-xp 00000000 03:02 1373986    /usr/lib/libpangox-1.0.so.0.200.1
4d737000-4d738000 rw-p 0000b000 03:02 1373986    /usr/lib/libpangox-1.0.so.0.200.1
4d738000-4d75f000 r-xp 00000000 03:02 1373982    /usr/lib/libpango-1.0.so.0.200.1
4d75f000-4d76b000 rw-p 00026000 03:02 1373982    /usr/lib/libpango-1.0.so.0.200.1
4d76b000-4d79e000 r-xp 00000000 03:02 1275577    /usr/lib/libgobject-2.0.so.0.200.1
4d79e000-4d7a0000 rw-p 00032000 03:02 1275577    /usr/lib/libgobject-2.0.so.0.200.1
4d7a0000-4d7a3000 r-xp 00000000 03:02 1275575    /usr/lib/libgmodule-2.0.so.0.200.1
4d7a3000-4d7a4000 rw-p 00002000 03:02 1275575    /usr/lib/libgmodule-2.0.so.0.200.1
4d7a4000-4d7c4000 r-xp 00000000 03:02 1373988    /usr/lib/libpangoxft-1.0.so.0.200.1
4d7c4000-4d7c5000 rw-p 0001f000 03:02 1373988    /usr/lib/libpangoxft-1.0.so.0.200.1
4d7c5000-4d7c8000 r-xp 00000000 03:02 293834     /usr/X11R6/lib/libXrandr.so.2.0
4d7c8000-4d7c9000 rw-p 00002000 03:02 293834     /usr/X11R6/lib/libXrandr.so.2.0
4d7c9000-4d7d0000 r-xp 00000000 03:02 295158     /usr/X11R6/lib/libXi.so.6.0
4d7d0000-4d7d1000 rw-p 00006000 03:02 295158     /usr/X11R6/lib/libXi.so.6.0
4d7d1000-4d7de000 r-xp 00000000 03:02 294622     /usr/X11R6/lib/libXext.so.6.4
4d7de000-4d7df000 rw-p 0000c000 03:02 294622     /usr/X11R6/lib/libXext.so.6.4
4d7df000-4d7f0000 r-xp 00000000 03:02 294637     /usr/X11R6/lib/libXft.so.2.0
4d7f0000-4d7f1000 rw-p 00010000 03:02 294637     /usr/X11R6/lib/libXft.so.2.0
4d7f1000-4d7f8000 r-xp 00000000 03:02 295162     /usr/X11R6/lib/libXrender.so.1.2
4d7f8000-4d7f9000 rw-p 00006000 03:02 295162     /usr/X11R6/lib/libXrender.so.1.2
4d7f9000-4d81a000 r-xp 00000000 03:02 1274801    /usr/lib/libfontconfig.so.1.0
4d81a000-4d81d000 rw-p 00021000 03:02 1274801    /usr/lib/libfontconfig.so.1.0
4d81e000-4d8fa000 r-xp 00000000 03:02 293970     /usr/X11R6/lib/libX11.so.6.2
4d8fa000-4d8fd000 rw-p 000db000 03:02 293970     /usr/X11R6/lib/libX11.so.6.2
4d8fd000-4d949000 r-xp 00000000 03:02 359585     /usr/lib/libfreetype.so.6.3.2
4d949000-4d94d000 rw-p 0004c000 03:02 359585     /usr/lib/libfreetype.so.6.3.2
4d94e000-4d96a000 r-xp 00000000 03:02 359054     /usr/lib/libexpat.so.0.3.0
4d96a000-4d96e000 rw-p 0001b000 03:02 359054     /usr/lib/libexpat.so.0.3.0
4d96e000-4d994000 r-xp 00000000 03:02 868290    
/opt/eclipse-270203/plugins/org.eclipse.swt.gtk_2.1.0/os/linux/x86/libswt-gtk-2131.so
4d994000-4d996000 rw-p 00026000 03:02 868290    
/opt/eclipse-270203/plugins/org.eclipse.swt.gtk_2.1.0/os/linux/x86/libswt-gtk-2131.so
4d996000-4d9a2000 r-xp 00000000 03:02 1649387   
/usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.so
4d9a2000-4d9a3000 rw-p 0000b000 03:02 1649387   
/usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.so
4d9a3000-4d9a9000 r--s 00000000 03:02 2285471   
/opt/eclipse-270203/plugins/org.eclipse.ant.core_2.1.0/antsupport.jar
4d9a9000-4d9ac000 r--s 00000000 03:02 18813     
/opt/eclipse-270203/plugins/com.genuitec.eclipse.easie.jboss_1.0.6/easiejboss.jar
4d9ac000-4d9b0000 r--s 00000000 03:02 18806     
/opt/eclipse-270203/plugins/com.genuitec.eclipse.easie.weblogic_1.0.8/easieweblogic.jar
4d9b2000-4d9ba000 r-xp 00000000 03:02 293818     /usr/X11R6/lib/libXcursor.so.1.0
4d9ba000-4d9bb000 rw-p 00007000 03:02 293818     /usr/X11R6/lib/libXcursor.so.1.0
4d9bb000-4da0c000 r--s 00000000 03:02 2285434   
/opt/eclipse-270203/plugins/org.eclipse.update.core_2.1.0/updatecore.jar
4da0c000-4da39000 r--s 00000000 03:02 2292647   
/opt/eclipse-270203/plugins/org.eclipse.help_2.1.0/help.jar
4da39000-4da8e000 r--s 00000000 03:02 1485237   
/opt/eclipse-270203/plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar
4da8e000-4daa0000 r--s 00000000 03:02 2285496   
/opt/eclipse-270203/plugins/org.eclipse.text_2.1.0/text.jar
4daa0000-4db18000 r--s 00000000 03:02 1274893   
/opt/eclipse-270203/plugins/org.eclipse.debug.ui_2.1.0/dtui.jar
4db18000-4dbd4000 r--s 00000000 03:02 1243311   
/opt/eclipse-270203/plugins/org.eclipse.jdt.debug.ui_2.1.0/jdiui.jar
4dbd4000-4df97000 r--s 00000000 03:02 917411    
/opt/eclipse-270203/plugins/org.eclipse.jdt.ui_2.1.0/jdt.jar
4df97000-4e063000 r--s 00000000 03:02 1667718   
/opt/eclipse-270203/plugins/org.eclipse.team.cvs.ui_2.1.0/teamcvsui.jar
4e063000-4e12c000 r--s 00000000 03:02 1421979   
/opt/eclipse-270203/plugins/org.eclipse.ui.externaltools_2.1.0/externaltools.jar
4e12c000-4e163000 r--s 00000000 03:02 1664882   
/opt/eclipse-270203/plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar
4e163000-4e2f0000 r--s 00000000 03:02 1260127   
/opt/eclipse-270203/plugins/org.eclipse.pde.ui_2.1.0/pdeui.jar
4e2f0000-4e38b000 r--s 00000000 03:02 1212614   
/opt/eclipse-270203/plugins/org.eclipse.update.ui_2.1.0/updateui.jar
4e38b000-4e39d000 r--p 00000000 03:02 1403904   
/usr/X11R6/lib/X11/fonts/Type1/l048013t.pfa
4e39d000-4e3b4000 r--s 00000000 03:02 2292620   
/opt/eclipse-270203/plugins/org.eclipse.team.core_2.1.0/team.jar
4e434000-4e44e000 r--s 00000000 03:02 2292690   
/opt/eclipse-270203/plugins/org.eclipse.ui.editors_2.1.0/editors.jar
4e44e000-4e46c000 r--s 00000000 03:02 1468968   
/opt/eclipse-270203/plugins/org.eclipse.debug.core_2.1.0/dtcore.jar
4e46c000-4e478000 r--s 00000000 03:02 868299    
/opt/eclipse-270203/plugins/org.eclipse.jdt.debug_2.1.0/jdi.jar
4e478000-4e517000 r--s 00000000 03:02 868300    
/opt/eclipse-270203/plugins/org.eclipse.jdt.debug_2.1.0/jdimodel.jar
4e517000-4e53b000 r--s 00000000 03:02 917406    
/opt/eclipse-270203/plugins/org.eclipse.jdt.launching_2.1.0/launching.jar
4e53b000-4e59b000 r--s 00000000 03:02 2243359   
/opt/eclipse-270203/plugins/org.eclipse.pde.core_2.1.0/pdecore.jar
4e59b000-4e5aa000 r--s 00000000 03:02 1929244   
/opt/eclipse-270203/plugins/org.eclipse.pde.runtime_2.1.0/pdert.jar
4e5aa000-4e5f0000 r--s 00000000 03:02 901377    
/opt/eclipse-270203/plugins/org.eclipse.team.ui_2.1.0/teamui.jar
4e5f0000-4e602000 r--p 00000000 03:02 1403906   
/usr/X11R6/lib/X11/fonts/Type1/l048016t.pfa
 
Local Time = Fri Feb 28 09:37:09 2003
Elapsed Time = 35
#
# The exception above was detected in native code outside the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode)
#
# An error report file has been saved as hs_err_pid2094.log.
# Please refer to the file for further information.
#
Comment 13 Jarkko Lietolahti CLA 2003-02-28 02:52:34 EST
Ok, now i know what's causing the crash; RedHat BlueCurve theme. What i did was
i changed from desktop theme from OceanDream to BlueCurve and Eclipse started to
crash. After changing back to OceanDream everything started to work again! I've
seen this same kind of bug reported somewhere else too. Maybe i should consider
recompiling redhat theme...
Comment 14 Sejal Patel CLA 2003-02-28 10:46:28 EST
OMG you have got to be kidding me. I'm also using Redhat's Bluecurve theme on my
debian box so that very well could be the problem. I'll try switching themes and
trying again today and report my findings after work today.
Comment 15 William R. Burdick Jr. CLA 2003-02-28 16:43:22 EST
OK, I tried the "LighthouseBlue" gtk theme, which is what the OceanDream gnome
theme uses and it seems to be working (it hasn't segfaulted on me, yet).  I did
a synchronize, which displayed the progress bar and survived.

I'm using the I20030227 build.
Comment 16 Sejal Patel CLA 2003-02-28 16:53:16 EST
Created attachment 3798 [details]
Different theme different problems.

The use of the crux theme resulted in different repeatable problems from that
of redhat's bluecurve theme.
Comment 17 William R. Burdick Jr. CLA 2003-02-28 17:03:10 EST
I had been using the default Gentoo gtk theme and segfaulting with that.
Comment 18 Felipe Heidrich CLA 2003-03-05 17:01:44 EST
Hey Jarkko!  We can't make it happen here.  Can you tell us whether the
following code fixes it?

int timerProc (int widget) {
	if (isVisible ()) OS.gtk_progress_bar_pulse (handle);
	return 1;
}
Comment 19 Mikael Carneholm CLA 2003-03-05 18:50:19 EST
I can confirm that I also have the same symptoms, i.e. Eclipse crashes if the
BlueCurve theme is used, but not with f.eg. the Simple theme.

My setup is
RedHat phoebe beta3
Eclipse RC1
Blackdown SDK 1.4.1
Comment 20 Felipe Heidrich CLA 2003-03-06 17:18:34 EST
*** Bug 34021 has been marked as a duplicate of this bug. ***
Comment 21 Veronika Irvine CLA 2003-03-10 09:41:13 EST
*** Bug 34227 has been marked as a duplicate of this bug. ***
Comment 22 Veronika Irvine CLA 2003-03-10 09:41:20 EST
*** Bug 34309 has been marked as a duplicate of this bug. ***
Comment 23 Sejal Patel CLA 2003-03-11 15:01:49 EST
Created attachment 4008 [details]
RC2 - Saving preferences

Just downloaded RC2 and blew away the workspace so it started up from scratch.

Admittedly I'm using Bluecurve again and the problem is still in
org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_pulse(Native Method) but I
just wanted to point out that Crux and Aqua and several other themes (anything
that actually looks nice) also has lots of problems too. I do not believe the
problem is with the theme but something simply not handling these themes
correctly.
Comment 24 Donatas Simkunas CLA 2003-03-12 01:48:29 EST
just tried to change timer_proc in RC2  as described in 
http://bugs.eclipse.org/bugs/show_bug.cgi?id=32204#c18, and this helps, no more 
crashes. 
Comment 25 Felipe Heidrich CLA 2003-03-12 13:08:03 EST
*** Bug 34201 has been marked as a duplicate of this bug. ***
Comment 26 Veronika Irvine CLA 2003-03-12 15:02:48 EST
Approved for RC3 by Veronika.
Comment 27 Veronika Irvine CLA 2003-03-12 15:24:13 EST
Approved by Mike for RC3.
Comment 28 Felipe Heidrich CLA 2003-03-13 12:44:21 EST
Fix released in HEAD > 20030313

Please, reopen this bug if someone get a segmentation fault on the API 
gtk_progress_bar_pulse when running RC3.

Thank you Donatas for testing the fix.
Comment 29 Veronika Irvine CLA 2003-03-14 11:37:34 EST
*** Bug 34986 has been marked as a duplicate of this bug. ***
Comment 30 Felipe Heidrich CLA 2003-03-17 14:15:58 EST
*** Bug 34891 has been marked as a duplicate of this bug. ***
Comment 31 Grant Gayed CLA 2003-03-19 10:26:17 EST
*** Bug 35281 has been marked as a duplicate of this bug. ***
Comment 32 DJ Houghton CLA 2003-03-22 14:13:49 EST
*** Bug 35532 has been marked as a duplicate of this bug. ***
Comment 33 Felipe Heidrich CLA 2003-04-14 11:15:11 EDT
*** Bug 36417 has been marked as a duplicate of this bug. ***
Comment 34 Roberto González Rocha CLA 2003-04-14 18:34:37 EDT
The bug reapeared on RH9 & eclipse 2.1
The bur report is:

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4D5F7F15
Function=(null)+0x4D5F7F15
Library=/usr/lib/libgdk-x11-2.0.so.0

NOTE: We are unable to locate the function name symbol for the error
      just occurred. Please refer to release documentation for possible
      reason and solutions.


Current Java thread:
	at org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_set_fraction(Native Method)
	- locked <0x487ffb88> (a java.lang.Class)
	at org.eclipse.swt.widgets.ProgressBar.updateBar(ProgressBar.java:213)
	at org.eclipse.swt.widgets.ProgressBar.setSelection(ProgressBar.java:203)
	at org.eclipse.jface.dialogs.ProgressIndicator.worked(ProgressIndicator.java:115)
	at
org.eclipse.jface.wizard.ProgressMonitorPart.internalWorked(ProgressMonitorPart.java:156)
	at
org.eclipse.jface.operation.AccumulatingProgressMonitor$Collector.run(AccumulatingProgressMonitor.java:74)
	at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
	at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:98)


and my gtk rpms are (stardard RH9 rpms):
authconfig-gtk-4.3.4-1
gtkam-0.1.7-3
gtkam-gimp-0.1.7-3
gtkhtml-1.1.9-0.9
mtr-gtk-0.52-2
usermode-gtk-1.67-2
gtk-engines-0.11-16
gtk+-devel-1.2.10-25
gtk2-devel-2.2.1-4
gtkhtml-devel-1.1.9-0.9
gtkhtml2-2.2.0-5
pygtk2-1.99.14-4
gtk2-engines-2.2.0-2
gtk-doc-0.10-4
gtk2-2.2.1-4
gnome-python2-gtkhtml2-1.99.14-5
pygtk2-devel-1.99.14-4
gtk+-1.2.10-25
pygtk2-libglade-1.99.14-4
Comment 35 Felipe Heidrich CLA 2003-04-15 09:25:07 EDT
Roberto, the problem you had is related to Bug#31941.

Anyhow, this should be re-open cause of Bug#36417 where the problem described 
was reported on RedHat 9.0.

Brent:
Which version of Eclipse are you running ? I need to know if the build you are 
running include the fix for this bug or not.
Thanks
Comment 36 Felipe Heidrich CLA 2003-04-15 09:52:39 EDT
*** Bug 36182 has been marked as a duplicate of this bug. ***
Comment 37 Erik Reuter CLA 2003-05-10 11:58:19 EDT
I'm having similar problems on RedHat9 (running KDE, using the Mist theme for
GTK apps).

I can work for a couple of hours in Eclipse, then suddenly everything slows to a
crawl and Eclipse crashes a few moments after. I cannot pinpoint any specific
action that provokes the error (switching perspectives, openening/closing
editors etc.). It seems like a memory leak build up over time. If I look at the
amount of memory consumed by X, it's tenfold of what it was initially before
running Eclipse (goes from around 60MB to 580MB when the crash occurs).


Here's an excerpt of the VM dump log:

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x79EA60B9
Function=(null)+0x79EA60B9
Library=/usr/lib/libgtk-x11-2.0.so.0

NOTE: We are unable to locate the function name symbol for the error
      just occurred. Please refer to release documentation for possible
      reason and solutions.


Current Java thread:
	at org.eclipse.swt.internal.gtk.OS.gtk_widget_modify_bg(Native Method)
	- locked <0x74b0b6a8> (a java.lang.Class)
	at org.eclipse.swt.widgets.Control.setBackgroundColor(Control.java:2173)
	at org.eclipse.swt.widgets.Control.setBackground(Control.java:2169)
	at org.eclipse.swt.custom.CTabFolder.setSelectionBackground(CTabFolder.java:1442)
	at org.eclipse.ui.internal.EditorWorkbook.drawGradient(EditorWorkbook.java:502)

.. Rest of the log omitted ...
Comment 38 Felipe Heidrich CLA 2003-05-16 11:22:14 EDT
Is someone here still having this problem ?

Rick, Brent: are you guys able to reproduce this bug ?
Comment 39 Rick Gaudette CLA 2003-05-17 02:09:16 EDT
Sure I still am but I haven't changed anything on my machine (j2sdk 1.4.1_02,
eclipse 2.1).  Is there something you want me to try?
Comment 40 Felipe Heidrich CLA 2003-05-20 11:51:56 EDT
Rick:

1. would you be able to give me steps to reproduce this problem ?
2. Could you try to run eclipse using a different theme and see if it helps ?
3. can you load the swt code (either fetch from CVS or import from plug-ins) 
and run a self-host eclipse ? I have an idea that I believe it can help (an 
alternative code to the one suggested in comment #18).

Note, item 2: if you are on KDE you can use gnome-theme-manager, then click on 
the details button and in the Controls tab you select Mist or Simple. 
Comment 41 Tomislav Vujec CLA 2003-05-20 22:15:34 EDT
This bug is same as the Bug 31941, which is fixed, and I can confirm that it
disappears in the SWT from the M20030515 maintenance build.
Comment 42 Rick Gaudette CLA 2003-05-21 02:07:23 EDT
Felipe,

On topic 1 it is pretty simple to replicate, anything that attemps to use a
progress bar, such rebuilding all, crashes.

Regarding topic 2, I have a feeling this RedHat problem.  When I attempt to
change the theme nothing happens, it always stays at something label a custom
theme.  I created another account, logged in under gnome, and attempted to
change the theme in there.  There was only the BlueCurve theme although the
directory where themes live appears to be well populated.

I downloaded the maintanence buil, M20030515, that does not have the problem.

W.r.t 3, could you give me some instructions on what to do on that one if you
still need it after this description.
Comment 43 Felipe Heidrich CLA 2003-05-22 15:09:12 EDT
Rick, about item 2, it's a problem in your instalation of RedHat 9, which can be
causing the problem for you. I'm running on RedHat 9 since it was released and I
never have this bug.

Item 3, the instructions would be:
a. Menu File->Import->External Plug-ins and Fragments
check the button "extract source archives...", Next, Select org.eclipse.swt and
Finish.
b. Open the org.eclipse.swt.widgets.ProgressBar class, replace the
timerProc(int) method by:
int timerProc (int widget) {
	if ((OS.GTK_WIDGET_FLAGS (handle) & OS.GTK_REALIZED) != 0) {
		OS.gtk_progress_bar_pulse (handle);
	}	
	return 1;
}
c. Menu Run->Run... Select Run-time Workbench, New. In the Tab `Plug-ins and
Fragments` select the third radio button (choose plugins and fragments to launch
fro the list). From the workspace plugins select org.eclipse.swt, in the
external plugins branch you select them all expect org.eclipse.swt. Run.
d. try to recreate the problem in the self host eclipse.

Comment 44 Phil Cornelius CLA 2003-06-03 07:22:43 EDT
Eclipse release 2.1, RH 9.0, Bluecurve

FWIW I get this simply by creating a project and then sharing it into cvs as a
new project. (extssh on remote cvs)

And I confirm that changing the theme to Raliegh, Simple, Gnome (Theme details)
is a workaround.
Comment 45 thierryw CLA 2003-06-17 05:30:38 EDT
the same appear with mandrake 9.1, gtk 2.2.1, eclipse 2.1 latest release when i
try to save an uml .ucd omondo plugin schema, no problem with an emf schema or
others things, just with a classic uml schema :
Current Java thread:

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4DA667F4
Function=(null)+0x4DA667F4
Library=/usr/lib/libgdk-x11-2.0.so.0

at org.eclipse.swt.internal.gtk.OS.gtk_progress_bar_set_fraction(Native Method)
	- locked <0x48b34fc0> (a java.lang.Class)
Comment 46 thierryw CLA 2003-06-17 05:59:17 EDT
fixed for me with eclipse stable build M1-sdk_linux-gtk
Comment 47 Hemal Hemant Shah CLA 2003-07-28 11:58:47 EDT
My crash and setup are similar to Comment #37 except that my crash after an hour
of actively working on Eclipse 2.1.1 is in the readAndDispatch loop calling the
native gtk_main_iteration.

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4D5CB020
Function=(null)+0x4D5CB020
Library=/usr/lib/libgdk-x11-2.0.so.0

NOTE: We are unable to locate the function name symbol for the error
      just occurred. Please refer to release documentation for possible
      reason and solutions.


Current Java thread:
        at org.eclipse.swt.internal.gtk.OS.gtk_main_iteration(Native Method)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1432)
        at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
        at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
        at
org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
        at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at org.eclipse.core.launcher.Main.basicRun(Main.java:291)
        at org.eclipse.core.launcher.Main.run(Main.java:747)
        at org.eclipse.core.launcher.Main.main(Main.java:583)

Dynamic libraries:
08048000-0804e000 r-xp 00000000 03:02 582958    
/devel/java/jdk1.4.1_01/jre/bin/java
0804e000-0804f000 rw-p 00005000 03:02 582958    
/devel/java/jdk1.4.1_01/jre/bin/java
40000000-40015000 r-xp 00000000 03:02 289817     /lib/ld-2.3.2.so
40015000-40016000 rw-p 00014000 03:02 289817     /lib/ld-2.3.2.so
40017000-40020000 r-xp 00000000 03:02 51746     
/devel/java/jdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
40020000-40021000 rw-p 00008000 03:02 51746     
/devel/java/jdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
40022000-40025000 r--s 00000000 03:02 180504    
/devel/java/jdk1.4.1_01/jre/lib/ext/dnsns.jar
40025000-4002a000 r--s 00000000 03:02 294208     /usr/apps/eclipse/startup.jar
4002a000-4002b000 r--s 00000000 03:02 341157    
/usr/apps/eclipse/plugins/org.eclipse.ui_2.1.1/ui.jar
4002b000-40035000 r-xp 00000000 03:02 128878     /lib/tls/libpthread-0.29.so
40035000-40036000 rw-p 0000a000 03:02 128878     /lib/tls/libpthread-0.29.so
40038000-4003a000 r-xp 00000000 03:02 289828     /lib/libdl-2.3.2.so
4003a000-4003b000 rw-p 00002000 03:02 289828     /lib/libdl-2.3.2.so
4003c000-40354000 r-xp 00000000 03:02 405321    
/devel/java/jdk1.4.1_01/jre/lib/i386/client/libjvm.so
40354000-40508000 rw-p 00317000 03:02 405321    
/devel/java/jdk1.4.1_01/jre/lib/i386/client/libjvm.so
40518000-4052a000 r-xp 00000000 03:02 289832     /lib/libnsl-2.3.2.so
4052a000-4052b000 rw-p 00011000 03:02 289832     /lib/libnsl-2.3.2.so
4052d000-4054e000 r-xp 00000000 03:02 128876     /lib/tls/libm-2.3.2.so
4054e000-4054f000 rw-p 00020000 03:02 128876     /lib/tls/libm-2.3.2.so
4054f000-4055f000 r-xp 00000000 03:02 51752     
/devel/java/jdk1.4.1_01/jre/lib/i386/libverify.so
4055f000-40561000 rw-p 0000f000 03:02 51752     
/devel/java/jdk1.4.1_01/jre/lib/i386/libverify.so
40561000-40582000 r-xp 00000000 03:02 51754     
/devel/java/jdk1.4.1_01/jre/lib/i386/libjava.so
40582000-40584000 rw-p 00020000 03:02 51754     
/devel/java/jdk1.4.1_01/jre/lib/i386/libjava.so
40584000-40599000 r-xp 00000000 03:02 51756     
/devel/java/jdk1.4.1_01/jre/lib/i386/libzip.so
40599000-4059b000 rw-p 00014000 03:02 51756     
/devel/java/jdk1.4.1_01/jre/lib/i386/libzip.so
4059b000-41c69000 r--s 00000000 03:02 51820     
/devel/java/jdk1.4.1_01/jre/lib/rt.jar
41cac000-41cc3000 r--s 00000000 03:02 51800     
/devel/java/jdk1.4.1_01/jre/lib/sunrsasign.jar
41cc3000-41d34000 r--s 00000000 03:02 51802     
/devel/java/jdk1.4.1_01/jre/lib/jsse.jar
41d34000-41d47000 r--s 00000000 03:02 51801     
/devel/java/jdk1.4.1_01/jre/lib/jce.jar
41fef000-41ffa000 r-xp 00000000 03:02 289838     /lib/libnss_files-2.3.2.so
41ffa000-41ffb000 rw-p 0000a000 03:02 289838     /lib/libnss_files-2.3.2.so
41ffb000-41ffc000 r-xp 00000000 03:02 341836    
/usr/apps/eclipse/plugins/org.eclipse.core.resources.linux_2.1.0/os/linux/x86/libcore_2_1_0a.so
41ffc000-41ffd000 rw-p 00001000 03:02 341836    
/usr/apps/eclipse/plugins/org.eclipse.core.resources.linux_2.1.0/os/linux/x86/libcore_2_1_0a.so
41ffd000-41ffe000 r-xp 00000000 03:02 435175    
/usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
41ffe000-41fff000 rw-p 00000000 03:02 435175    
/usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
41fff000-42000000 r--s 00000000 03:02 36693     
/usr/apps/eclipse/plugins/org.eclipse.platform.doc.isv_2.1.0/activeHelpSample.jar
42000000-4212e000 r-xp 00000000 03:02 128874     /lib/tls/libc-2.3.2.so
4212e000-42131000 rw-p 0012e000 03:02 128874     /lib/tls/libc-2.3.2.so
42133000-423ef000 r--s 00000000 03:02 51818     
/devel/java/jdk1.4.1_01/jre/lib/charsets.jar
443ef000-443f0000 r--s 00000000 03:02 628556    
/usr/apps/eclipse/plugins/org.eclipse.ui.versioncheck_2.1.1/versioncheck.jar
4c3f0000-4c5f0000 r--p 00000000 03:02 466899     /usr/lib/locale/locale-archive
4c7f0000-4c80d000 r--s 00000000 03:02 180503    
/devel/java/jdk1.4.1_01/jre/lib/ext/sunjce_provider.jar
4c80d000-4c8ac000 r--s 00000000 03:02 180505    
/devel/java/jdk1.4.1_01/jre/lib/ext/localedata.jar
4c8ac000-4c8ba000 r--s 00000000 03:02 180506    
/devel/java/jdk1.4.1_01/jre/lib/ext/ldapsec.jar
4c93a000-4c952000 r--s 00000000 03:02 293292    
/usr/apps/eclipse/plugins/org.eclipse.core.boot_2.1.1/boot.jar
4c952000-4c987000 r--s 00000000 03:02 293312    
/usr/apps/eclipse/plugins/org.eclipse.core.runtime_2.1.1/runtime.jar
4c987000-4c99d000 r--s 00000000 03:02 293306    
/usr/apps/eclipse/plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar
4c99d000-4cabd000 r--s 00000000 03:02 293307    
/usr/apps/eclipse/plugins/org.apache.xerces_4.0.13/xercesImpl.jar
4cabd000-4cb0c000 r--s 00000000 03:02 341058    
/usr/apps/eclipse/plugins/org.eclipse.ui.views_2.1.0/views.jar
4cb0c000-4cd23000 r--s 00000000 03:02 213491    
/usr/apps/eclipse/plugins/org.eclipse.ui.workbench_2.1.1/workbench.jar
4cd23000-4cd8f000 r--s 00000000 03:02 4257      
/usr/apps/eclipse/plugins/org.eclipse.jface_2.1.1/jface.jar
4cd8f000-4ce40000 r--s 00000000 03:02 341820    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/ws/gtk/swt.jar
4ce40000-4cecd000 r--s 00000000 03:02 294113    
/usr/apps/eclipse/plugins/org.eclipse.core.resources_2.1.1/resources.jar
4cecd000-4cf34000 r--s 00000000 03:02 165396    
/usr/apps/eclipse/plugins/org.eclipse.team.cvs.core_2.1.1/cvs.jar
4cf34000-4cf67000 r--s 00000000 03:02 341339    
/usr/apps/eclipse/plugins/org.eclipse.search_2.1.1/search.jar
4cf67000-4cf75000 r--s 00000000 03:02 342151    
/usr/apps/eclipse/plugins/org.eclipse.pde_2.1.0/pde.jar
4cf75000-4d1cd000 r--s 00000000 03:02 567863    
/usr/apps/eclipse/plugins/org.eclipse.jdt.core_2.1.1/jdtcore.jar
4d1cd000-4d20d000 r--s 00000000 03:02 229871    
/usr/apps/eclipse/plugins/org.eclipse.jdt.junit_2.1.1/junitsupport.jar
4d20d000-4d223000 r--s 00000000 03:02 341402    
/usr/apps/eclipse/plugins/org.eclipse.help.ui_2.1.1/helpworkbench.jar
4d223000-4d284000 r--s 00000000 03:02 341295    
/usr/apps/eclipse/plugins/org.eclipse.compare_2.1.0/compare.jar
4d284000-4d28b000 r--s 00000000 03:02 341819    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/ws/gtk/swt-pi.jar
4d28b000-4d2b5000 r-xp 00000000 03:02 341826    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/os/linux/x86/libswt-pi-gtk-2135.so
4d2b5000-4d2b7000 rw-p 00029000 03:02 341826    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/os/linux/x86/libswt-pi-gtk-2135.so
4d2b7000-4d2bd000 r--s 00000000 03:02 161231     /usr/lib/gconv/gconv-modules.cache
4d2bd000-4d2c9000 r-xp 00000000 03:02 307096    
/usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.so
4d2c9000-4d2ca000 rw-p 0000b000 03:02 307096    
/usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.so
4d2ca000-4d2cb000 r--s 00000000 03:02 36673     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/servlets-common.jar
4d2cb000-4d2cf000 r-xp 00000000 03:02 354270     /usr/lib/libgthread-2.0.so.0.200.1
4d2cf000-4d2d0000 rw-p 00003000 03:02 354270     /usr/lib/libgthread-2.0.so.0.200.1
4d2d0000-4d339000 r-xp 00000000 03:02 354264     /usr/lib/libglib-2.0.so.0.200.1
4d339000-4d33a000 rw-p 00069000 03:02 354264     /usr/lib/libglib-2.0.so.0.200.1
4d33a000-4d583000 r-xp 00000000 03:02 354522     /usr/lib/libgtk-x11-2.0.so.0.200.1
4d583000-4d58c000 rw-p 00248000 03:02 354522     /usr/lib/libgtk-x11-2.0.so.0.200.1
4d58e000-4d5f7000 r-xp 00000000 03:02 354516     /usr/lib/libgdk-x11-2.0.so.0.200.1
4d5f7000-4d5fc000 rw-p 00069000 03:02 354516     /usr/lib/libgdk-x11-2.0.so.0.200.1
4d5fc000-4d613000 r-xp 00000000 03:02 354477     /usr/lib/libatk-1.0.so.0.200.0
4d613000-4d615000 rw-p 00016000 03:02 354477     /usr/lib/libatk-1.0.so.0.200.0
4d615000-4d627000 r-xp 00000000 03:02 354518    
/usr/lib/libgdk_pixbuf-2.0.so.0.200.1
4d627000-4d628000 rw-p 00011000 03:02 354518    
/usr/lib/libgdk_pixbuf-2.0.so.0.200.1
4d628000-4d634000 r-xp 00000000 03:02 354512     /usr/lib/libpangox-1.0.so.0.200.1
4d634000-4d635000 rw-p 0000b000 03:02 354512     /usr/lib/libpangox-1.0.so.0.200.1
4d635000-4d65c000 r-xp 00000000 03:02 354508     /usr/lib/libpango-1.0.so.0.200.1
4d65c000-4d668000 rw-p 00026000 03:02 354508     /usr/lib/libpango-1.0.so.0.200.1
4d668000-4d69b000 r-xp 00000000 03:02 354268     /usr/lib/libgobject-2.0.so.0.200.1
4d69b000-4d69d000 rw-p 00032000 03:02 354268     /usr/lib/libgobject-2.0.so.0.200.1
4d69d000-4d6a0000 r-xp 00000000 03:02 354266     /usr/lib/libgmodule-2.0.so.0.200.1
4d6a0000-4d6a1000 rw-p 00002000 03:02 354266     /usr/lib/libgmodule-2.0.so.0.200.1
4d6a1000-4d6c1000 r-xp 00000000 03:02 354514     /usr/lib/libpangoxft-1.0.so.0.200.1
4d6c1000-4d6c2000 rw-p 0001f000 03:02 354514     /usr/lib/libpangoxft-1.0.so.0.200.1
4d6c2000-4d6c5000 r-xp 00000000 03:02 386728     /usr/X11R6/lib/libXrandr.so.2.0
4d6c5000-4d6c6000 rw-p 00002000 03:02 386728     /usr/X11R6/lib/libXrandr.so.2.0
4d6c6000-4d6cd000 r-xp 00000000 03:02 386718     /usr/X11R6/lib/libXi.so.6.0
4d6cd000-4d6ce000 rw-p 00006000 03:02 386718     /usr/X11R6/lib/libXi.so.6.0
4d6ce000-4d6db000 r-xp 00000000 03:02 386710     /usr/X11R6/lib/libXext.so.6.4
4d6db000-4d6dc000 rw-p 0000c000 03:02 386710     /usr/X11R6/lib/libXext.so.6.4
4d6dc000-4d6ed000 r-xp 00000000 03:02 386716     /usr/X11R6/lib/libXft.so.2.1
4d6ed000-4d6ee000 rw-p 00010000 03:02 386716     /usr/X11R6/lib/libXft.so.2.1
4d6ee000-4d6f5000 r-xp 00000000 03:02 386730     /usr/X11R6/lib/libXrender.so.1.2
4d6f5000-4d6f6000 rw-p 00006000 03:02 386730     /usr/X11R6/lib/libXrender.so.1.2
4d6f6000-4d717000 r-xp 00000000 03:02 354409     /usr/lib/libfontconfig.so.1.0
4d717000-4d71a000 rw-p 00021000 03:02 354409     /usr/lib/libfontconfig.so.1.0
4d71b000-4d7f7000 r-xp 00000000 03:02 386700     /usr/X11R6/lib/libX11.so.6.2
4d7f7000-4d7fa000 rw-p 000db000 03:02 386700     /usr/X11R6/lib/libX11.so.6.2
4d7fa000-4d846000 r-xp 00000000 03:02 354405     /usr/lib/libfreetype.so.6.3.2
4d846000-4d84a000 rw-p 0004c000 03:02 354405     /usr/lib/libfreetype.so.6.3.2
4d84b000-4d869000 r-xp 00000000 03:02 354254     /usr/lib/libexpat.so.0.4.0
4d869000-4d86b000 rw-p 0001e000 03:02 354254     /usr/lib/libexpat.so.0.4.0
4d86b000-4d890000 r-xp 00000000 03:02 341825    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/os/linux/x86/libswt-gtk-2135.so
4d890000-4d892000 rw-p 00025000 03:02 341825    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/os/linux/x86/libswt-gtk-2135.so
4d892000-4d893000 r-xp 00000000 03:02 161175     /usr/lib/gconv/ISO8859-1.so
4d893000-4d894000 rw-p 00001000 03:02 161175     /usr/lib/gconv/ISO8859-1.so
4d894000-4d8a6000 r--s 00000000 03:02 212963    
/usr/apps/eclipse/plugins/org.eclipse.text_2.1.0/text.jar
4d8a6000-4d8a7000 r-xp 00000000 03:02 341824    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/os/linux/x86/libswt-gnome-gtk-2135.so
4d8a7000-4d8a8000 rw-p 00001000 03:02 341824    
/usr/apps/eclipse/plugins/org.eclipse.swt.gtk_2.1.1/os/linux/x86/libswt-gnome-gtk-2135.so
4d8a8000-4d8b0000 r-xp 00000000 03:02 386708     /usr/X11R6/lib/libXcursor.so.1.0
4d8b0000-4d8b1000 rw-p 00007000 03:02 386708     /usr/X11R6/lib/libXcursor.so.1.0
4d8b1000-4d903000 r--s 00000000 03:02 293800    
/usr/apps/eclipse/plugins/org.eclipse.update.core_2.1.0/updatecore.jar
4d903000-4d930000 r--s 00000000 03:02 4465      
/usr/apps/eclipse/plugins/org.eclipse.help_2.1.1/help.jar
4d930000-4d986000 r--s 00000000 03:02 84833     
/usr/apps/eclipse/plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar
4d986000-4da00000 r--s 00000000 03:02 341229    
/usr/apps/eclipse/plugins/org.eclipse.debug.ui_2.1.1/dtui.jar
4da00000-4ddcd000 r--s 00000000 03:02 165453    
/usr/apps/eclipse/plugins/org.eclipse.jdt.ui_2.1.1/jdt.jar
4ddcd000-4de9c000 r--s 00000000 03:02 341639    
/usr/apps/eclipse/plugins/org.eclipse.team.cvs.ui_2.1.1/teamcvsui.jar
4de9c000-4e02d000 r--s 00000000 03:02 535706    
/usr/apps/eclipse/plugins/org.eclipse.pde.ui_2.1.0/pdeui.jar
4e02d000-4e0ca000 r--s 00000000 03:02 341505    
/usr/apps/eclipse/plugins/org.eclipse.update.ui_2.1.1/updateui.jar
4e0ca000-4e189000 r--s 00000000 03:02 165487    
/usr/apps/eclipse/plugins/org.eclipse.jdt.debug.ui_2.1.1/jdiui.jar
4e189000-4e255000 r--s 00000000 03:02 567853    
/usr/apps/eclipse/plugins/org.eclipse.ui.externaltools_2.1.1/externaltools.jar
4e255000-4e28d000 r--s 00000000 03:02 262008    
/usr/apps/eclipse/plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar
4e28d000-4e28f000 r-xp 00000000 03:02 242413    
/usr/lib/pango/1.2.0/modules/pango-basic-xft.so
4e28f000-4e290000 rw-p 00001000 03:02 242413    
/usr/lib/pango/1.2.0/modules/pango-basic-xft.so
4e290000-4e2a2000 r--p 00000000 03:02 452335    
/usr/X11R6/lib/X11/fonts/Type1/l048013t.pfa
4e2a2000-4e2a9000 r--s 00000000 03:02 294104    
/usr/apps/eclipse/plugins/org.eclipse.ant.core_2.1.1/antsupport.jar
4e2a9000-4e2c0000 r--s 00000000 03:02 657       
/usr/apps/eclipse/plugins/org.eclipse.team.core_2.1.1/team.jar
4e340000-4e35a000 r--s 00000000 03:02 341063    
/usr/apps/eclipse/plugins/org.eclipse.ui.editors_2.1.0/editors.jar
4e35a000-4e378000 r--s 00000000 03:02 84392     
/usr/apps/eclipse/plugins/org.eclipse.debug.core_2.1.0/dtcore.jar
4e378000-4e384000 r--s 00000000 03:02 535671    
/usr/apps/eclipse/plugins/org.eclipse.jdt.debug_2.1.0/jdi.jar
4e384000-4e424000 r--s 00000000 03:02 535672    
/usr/apps/eclipse/plugins/org.eclipse.jdt.debug_2.1.0/jdimodel.jar
4e424000-4e448000 r--s 00000000 03:02 52550     
/usr/apps/eclipse/plugins/org.eclipse.jdt.launching_2.1.1/launching.jar
4e448000-4e455000 r--s 00000000 03:02 438887    
/usr/apps/eclipse/plugins/org.eclipse.jdt.launching.j9_5.5.0/j9launching.jar
4e455000-4e4b7000 r--s 00000000 03:02 342144    
/usr/apps/eclipse/plugins/org.eclipse.pde.core_2.1.0/pdecore.jar
4e4b7000-4e4c7000 r--s 00000000 03:02 342107    
/usr/apps/eclipse/plugins/org.eclipse.pde.runtime_2.1.0/pdert.jar
4e4c7000-4e50e000 r--s 00000000 03:02 341389    
/usr/apps/eclipse/plugins/org.eclipse.team.ui_2.1.0/teamui.jar
4e50e000-4e520000 r--p 00000000 03:02 452337    
/usr/X11R6/lib/X11/fonts/Type1/l048016t.pfa
4e620000-4e624000 r-xp 00000000 03:02 370916    
/usr/lib/gtk-2.0/2.2.0/loaders/libpixbufloader-png.so
4e624000-4e625000 rw-p 00003000 03:02 370916    
/usr/lib/gtk-2.0/2.2.0/loaders/libpixbufloader-png.so
4e625000-4e629000 r--s 00000000 03:02 212993    
/usr/apps/eclipse/plugins/com.jcraft.eclipse.cvsssh2_0.0.5/cvsssh2.jar
4e629000-4e62b000 r--s 00000000 03:02 165428    
/usr/apps/eclipse/plugins/org.eclipse.help.webapp_2.1.1/webapp.jar
4e634000-4e66b000 r-xp 00000000 03:02 354529     /usr/lib/libgnomevfs-2.so.0.0.0
4e66b000-4e66d000 rw-p 00036000 03:02 354529     /usr/lib/libgnomevfs-2.so.0.0.0
4e66d000-4e67e000 r-xp 00000000 03:02 354502    
/usr/lib/libbonobo-activation.so.4.0.0
4e67e000-4e680000 rw-p 00011000 03:02 354502    
/usr/lib/libbonobo-activation.so.4.0.0
4e680000-4e6b9000 r-xp 00000000 03:02 354498     /usr/lib/libORBit-2.so.0.0.0
4e6b9000-4e6c2000 rw-p 00038000 03:02 354498     /usr/lib/libORBit-2.so.0.0.0
4e6c2000-4e7a1000 r-xp 00000000 03:02 354418     /usr/lib/libxml2.so.2.5.4
4e7a1000-4e7ac000 rw-p 000de000 03:02 354418     /usr/lib/libxml2.so.2.5.4
4e7ad000-4e7b9000 r-xp 00000000 03:02 354301     /usr/lib/libz.so.1.1.4
4e7b9000-4e7bb000 rw-p 0000b000 03:02 354301     /usr/lib/libz.so.1.1.4
4e7bb000-4e7c2000 r-xp 00000000 03:02 354496     /usr/lib/liblinc.so.1.0.0
4e7c2000-4e7c3000 rw-p 00006000 03:02 354496     /usr/lib/liblinc.so.1.0.0
4e7c3000-4e7f6000 r-xp 00000000 03:02 354526     /usr/lib/libgconf-2.so.4.1.0
4e7f6000-4e7f9000 rw-p 00033000 03:02 354526     /usr/lib/libgconf-2.so.4.1.0
4e7f9000-4e82b000 r-xp 00000000 03:02 289889     /lib/libssl.so.0.9.7a
4e82b000-4e82e000 rw-p 00032000 03:02 289889     /lib/libssl.so.0.9.7a
4e82e000-4e90a000 r-xp 00000000 03:02 289888     /lib/libcrypto.so.0.9.7a
4e90a000-4e91c000 rw-p 000db000 03:02 289888     /lib/libcrypto.so.0.9.7a
4e91f000-4e925000 r-xp 00000000 03:02 289850     /lib/librt-2.3.2.so
4e925000-4e927000 rw-p 00005000 03:02 289850     /lib/librt-2.3.2.so
4e931000-4e938000 r-xp 00000000 03:02 354282     /usr/lib/libpopt.so.0.0.0
4e938000-4e939000 rw-p 00006000 03:02 354282     /usr/lib/libpopt.so.0.0.0
4e939000-4e948000 r-xp 00000000 03:02 289848     /lib/libresolv-2.3.2.so
4e948000-4e949000 rw-p 0000f000 03:02 289848     /lib/libresolv-2.3.2.so
4e94b000-4e95d000 r-xp 00000000 03:02 193347    
/usr/kerberos/lib/libgssapi_krb5.so.2.2
4e95d000-4e95e000 rw-p 00011000 03:02 193347    
/usr/kerberos/lib/libgssapi_krb5.so.2.2
4e95e000-4e9ba000 r-xp 00000000 03:02 193361     /usr/kerberos/lib/libkrb5.so.3.1
4e9ba000-4e9bc000 rw-p 0005c000 03:02 193361     /usr/kerberos/lib/libkrb5.so.3.1
4e9bc000-4e9cb000 r-xp 00000000 03:02 193351    
/usr/kerberos/lib/libk5crypto.so.3.0
4e9cb000-4e9cc000 rw-p 0000f000 03:02 193351    
/usr/kerberos/lib/libk5crypto.so.3.0
4e9cc000-4e9cd000 r-xp 00000000 03:02 193341     /usr/kerberos/lib/libcom_err.so.3.0
4e9cd000-4e9ce000 rw-p 00001000 03:02 193341     /usr/kerberos/lib/libcom_err.so.3.0
4e9ce000-4e9d1000 r-xp 00000000 03:02 289836     /lib/libnss_dns-2.3.2.so
4e9d1000-4e9d2000 rw-p 00003000 03:02 289836     /lib/libnss_dns-2.3.2.so
4ea52000-4eb07000 r--s 00000000 03:02 245902    
/usr/apps/eclipse/plugins/org.apache.ant_1.5.3/ant.jar
4eb07000-4ebab000 r--s 00000000 03:02 245903    
/usr/apps/eclipse/plugins/org.apache.ant_1.5.3/optional.jar
4ebab000-4ebbb000 r-xp 00000000 03:02 51759     
/devel/java/jdk1.4.1_01/jre/lib/i386/libnet.so
4ebbb000-4ebbd000 rw-p 0000f000 03:02 51759     
/devel/java/jdk1.4.1_01/jre/lib/i386/libnet.so
4ebbd000-4ebbf000 r--s 00000000 03:02 36668     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/servlets-invoker.jar
4ebbf000-4ebe1000 r-xp 00000000 03:02 354415     /usr/lib/libpng12.so.0.1.2.2
4ebe1000-4ebe2000 rw-p 00022000 03:02 354415     /usr/lib/libpng12.so.0.1.2.2
4ebe2000-4ec08000 r--s 00000000 03:02 341300    
/usr/apps/eclipse/plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar
4ec08000-4ec1c000 r--s 00000000 03:02 212996    
/usr/apps/eclipse/plugins/com.jcraft.eclipse.cvsssh2_0.0.5/jsch-0.1.5.jar
4ec1c000-4ec28000 r--s 00000000 03:02 245908    
/usr/apps/eclipse/plugins/org.eclipse.team.cvs.ssh_2.1.1/teamcvsssh.jar
4ec28000-4ec37000 r--s 00000000 03:02 342068    
/usr/apps/eclipse/plugins/org.eclipse.pde.build_2.1.0/pdebuild.jar
4ec59000-4ec77000 r--s 00000000 03:02 439094    
/usr/apps/eclipse/plugins/org.junit_3.8.1/junit.jar
4ec77000-4ec94000 r--s 00000000 03:02 212975    
/usr/apps/eclipse/plugins/com.ibm.ive.j9.options_5.5.0/slparser.jar
4ec97000-4ec9c000 r--s 00000000 03:02 36659     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/tomcatwrapper.jar
4ec9c000-4ed2c000 r--s 00000000 03:02 36667     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/catalina.jar
4ed2c000-4ed33000 r--s 00000000 03:02 36677     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/bootstrap.jar
4ed33000-4ed39000 r--s 00000000 03:02 36664     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/commons-logging.jar
4ed39000-4ed41000 r--s 00000000 03:02 36679     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/jakarta-regexp-1.2.jar
4ed41000-4ed74000 r--s 00000000 03:02 36665     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/jasper-compiler.jar
4ed74000-4ed85000 r--s 00000000 03:02 36671     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/jasper-runtime.jar
4ed85000-4ed8a000 r--s 00000000 03:02 36676     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/naming-factory.jar
4ed8a000-4ed91000 r--s 00000000 03:02 36672     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/naming-common.jar
4ed91000-4ed9a000 r--s 00000000 03:02 36669     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/naming-resources.jar
4ed9a000-4edae000 r--s 00000000 03:02 36670     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/servlet.jar
4edae000-4edb3000 r--s 00000000 03:02 36680     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/servlets-default.jar
4edb3000-4edb6000 r--s 00000000 03:02 36662     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/servlets-manager.jar
4edb6000-4edbc000 r--s 00000000 03:02 36663     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/servlets-webdav.jar
4edbc000-4edca000 r--s 00000000 03:02 36666     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/tomcat-coyote.jar
4edca000-4edd3000 r--s 00000000 03:02 36675     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/tomcat-http11.jar
4edd3000-4edf8000 r--s 00000000 03:02 36678     
/usr/apps/eclipse/plugins/org.eclipse.tomcat_4.0.6.1/tomcat-util.jar

Local Time = Fri Jul 25 21:38:23 2003
Elapsed Time = 1802
#
# The exception above was detected in native code outside the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode)
#
# An error report file has been saved as hs_err_pid11731.log.
# Please refer to the file for further information.
#
Comment 48 Veronika Irvine CLA 2004-05-25 17:17:30 EDT
Please retry with Eclipse 3.0 M9 and report.
Comment 49 Michael Schuele CLA 2004-06-01 18:40:25 EDT
I have the same problem with eclipse 3.0RC1, eclipse 2.1.3 is running without
problems until now (just installed it and only tested it for some minutes).

eclipse 3 crashed while the splash screen was showing (the first time I started
it after installation). This happend 3 or 4 times until I could see the eclipse
window for the first time. After clicking some buttons and selecting the SSH2
configuration from the preferences window, eclipse crashed again.

***WARNING: Gtk+ version too old (micro mismatch)
***WARNING: SWT requires GTK 2.0.6
***WARNING: Detected: 2.0.2

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4D05DE67
Function=gtk_tree_view_column_clear_attributes+0x6B
Library=/usr/lib/libgtk-x11-2.0.so.0

Current Java thread:
        at org.eclipse.swt.internal.gtk.OS.gtk_tree_view_column_clear(Native Method)
        - locked <0x48adece8> (a java.lang.Class)
        at org.eclipse.swt.widgets.Table.createRenderers(Table.java:506)
        at org.eclipse.swt.widgets.Table.createItem(Table.java:581)
        at org.eclipse.swt.widgets.TableColumn.createWidget(TableColumn.java:181)

[...]

I'm using Debian Woody and these packages:

gdk-imlib1          1.9.14-2            
gdk-imlib2          1.9.14-10woody11    
libgnorbagtk0       1.4.1.4-3           
libgtk-common       2.0.2-5woody1       
libgtk1.2           1.2.10-11           
libgtk1.2-common    1.2.10-11           
libgtk1.2-dev       1.2.10-11           
libgtk2.0-0         2.0.2-5woody1
libgtk2.0-common    2.0.2-5woody1       

and Java version: j2sdk1.4.2_04
Comment 50 Felipe Heidrich CLA 2004-06-02 15:34:11 EDT
Hemal: The 2.1.x stream is closed,  I think there will be another build from 
that stream.

Michael: You need at least GTK 2.2.1 to run Eclipse 3.0, the one you have is 
too old (2.0.2).
Comment 51 Jan Wessely CLA 2004-08-01 06:47:42 EDT
I'm using

libgtk2.0-0/unstable uptodate 2.4.4-2
libgtk2.0-common/unstable uptodate 2.4.4-2
libgtk2.0-bin/unstable uptodate 2.4.4-2

and still have the same problem on Debian. Is that an appropriate version?