I have an JOGL based opengl program that uses textures on flat surfaces. After a texture is put on a surface, it will eventually crash. If the textures are small, it takes a while. I managed to reproduce it with a simple program:

package org.yourorghere;

import com.sun.opengl.util.Animator;
import com.sun.opengl.util.texture.Texture;
import com.sun.opengl.util.texture.TextureIO;
import java.awt.Color;
import java.awt.Frame;
import java.awt.Graphics2D;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import javax.media.opengl.GL;
import javax.media.opengl.GLAutoDrawable;
import javax.media.opengl.GLCanvas;
import javax.media.opengl.GLEventListener;
import javax.media.opengl.glu.GLU;



/**
 * SimpleJOGL.java <BR>
 * author: Brian Paul (converted to Java by Ron Cemer and Sven Goethel) <P>
 *
 * This version is equal to Brian Paul's version 1.2 1999/10/21
 */
public class SimpleJOGL implements GLEventListener, KeyListener {

    GLCanvas canvas;
    int lists;
    float angle = 0.f;
    boolean needsRotate = false;
    boolean needsTexture = false;
    Texture texture1;
    Texture texture2;
        
    Color c1 = Color.red;
    Color c2 = Color.green;
    
    public SimpleJOGL(GLCanvas canvas) {
        this.canvas = canvas;
    }

    public static void main(String[] args) {
        Frame frame = new Frame("Simple JOGL Application");
        GLCanvas canvas = new GLCanvas();

        SimpleJOGL sjogl = new SimpleJOGL(canvas);
        canvas.addKeyListener(sjogl);
        
        canvas.addGLEventListener(sjogl);
        frame.add(canvas);
        frame.setSize(640, 480);
        final Animator animator = new Animator(canvas);
        frame.addWindowListener(new WindowAdapter() {

            @Override
            public void windowClosing(WindowEvent e) {
                // Run this on another thread than the AWT event queue to
                // make sure the call to Animator.stop() completes before
                // exiting
                new Thread(new Runnable() {

                    public void run() {
                        animator.stop();
                        System.exit(0);
                    }
                }).start();
            }
        });
        // Center frame
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        animator.start();
    }

    public void init(GLAutoDrawable drawable) {
        // Use debug pipeline
        // drawable.setGL(new DebugGL(drawable.getGL()));

        GL gl = drawable.getGL();
        System.err.println("INIT GL IS: " + gl.getClass().getName());

        // Enable VSync
        gl.setSwapInterval(1);

        // double buffer
        gl.glEnable(GL.GL_DOUBLEBUFFER);
        drawable.setAutoSwapBufferMode(false);
        
        // Enable VSync
        gl.setSwapInterval(1);
        
        // Setup the drawing area and shading mode
        gl.glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
        gl.glShadeModel(GL.GL_SMOOTH); // try setting this to GL_FLAT and see what happens.
        
        gl.glTexEnvi(GL.GL_TEXTURE_ENV, GL.GL_TEXTURE_ENV_MODE, GL.GL_REPLACE);
        gl.glEnable(GL.GL_TEXTURE_2D);
        gl.glDisable(GL.GL_BLEND);
        
                // -- lighting --
        gl.glEnable(GL.GL_COLOR_MATERIAL);
        gl.glLightModelf(GL.GL_LIGHT_MODEL_TWO_SIDE, 1.0f);
        gl.glColorMaterial(GL.GL_FRONT_AND_BACK, GL.GL_AMBIENT_AND_DIFFUSE);
        gl.glEnable(GL.GL_MAP1_VERTEX_3);
        gl.glHint(GL.GL_POLYGON_SMOOTH_HINT, GL.GL_NICEST);
        gl.glLightfv(GL.GL_LIGHT0, GL.GL_AMBIENT, new float[]{.3f,.3f,.3f,1.f},0);
        gl.glLightfv(GL.GL_LIGHT0, GL.GL_DIFFUSE, new float[]{.55f,.55f,.55f,1.f},0);
        gl.glLightfv(GL.GL_LIGHT0, GL.GL_SPECULAR, new float[]{.05f,.05f,.05f,1.f}, 0);
        gl.glFrontFace(GL.GL_CCW);
        gl.glEnable(GL.GL_LIGHT0);
        gl.glEnable(GL.GL_LIGHTING);
        gl.glEnable(GL.GL_DEPTH_TEST);

        gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GL.GL_AMBIENT_AND_DIFFUSE, new float[]{.5f,.5f,.5f,1.0f}, 0);
        gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GL.GL_SPECULAR, new float[]{.05f, .05f, .05f, 1.0f}, 0);
        gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GL.GL_EMISSION, new float[]{0.01f, 0.01f, 0.01f, 1.f}, 0);
        gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GL.GL_SHININESS, new float[]{30}, 0);
        gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GL.GL_COLOR_INDEXES, new float[]{1.0f, 0.0f, 0.0f, 1.0f}, 0);
        
        gl.glCullFace(GL.GL_BACK);
        gl.glDisable(GL.GL_BLEND);
        gl.glEnable(GL.GL_RESCALE_NORMAL);

        
        lists = gl.glGenLists(3);
        this.needsRotate = true;
        this.needsTexture = true;
    }
    
    private void reTexture(GL gl) {
        BufferedImage image1 = makeImage(c1);
        BufferedImage image2 = makeImage(c2);
        makeShape(gl, image1, image2);
    }
    private BufferedImage makeImage(Color c) {
        int y = 1200;
        int x = 1024;
        BufferedImage image = new BufferedImage(y, y, BufferedImage.TYPE_INT_RGB);
        Graphics2D g = image.createGraphics();
        g.setBackground(Color.white);
        g.clearRect(0, 0, y,y);
        Rectangle2D r = new Rectangle2D.Float(128,128,x-256,x-256);
        g.setColor(c);
        g.fill(r);
        g.dispose();
        return image;
    }

    private void makeShape(GL gl, BufferedImage image1, BufferedImage image2) {
        float x = 1024.f/1200.f;

        texture1 = TextureIO.newTexture(image1, false) ;
        texture2 = TextureIO.newTexture(image2, false) ;
        
        gl.glNewList(lists+1, GL.GL_COMPILE);
                
        gl.glColor3f(0f, .8f, .4f);
        // Drawing Using Triangles

        gl.glBegin(GL.GL_POLYGON);
            gl.glTexCoord2f(0, 0);
            gl.glVertex3f(0.0f, 0.0f, 0.0f);   // Top
            gl.glNormal3f(0, 0, 1);
            
            gl.glTexCoord2f(x, 0);
            gl.glVertex3f(1.0f, 0.0f, 0.0f); // Bottom Left
            gl.glNormal3f(0, 0, 1);
            
            gl.glTexCoord2f(x, x);
            gl.glVertex3f(1.0f, 1.0f, 0.0f);  // Bottom Right
            gl.glNormal3f(0, 0, 1);
            
            gl.glTexCoord2f(0, x);
            gl.glVertex3f(0f, 1.0f, 0.0f);  // Bottom Right
            gl.glNormal3f(0, 0, 1);
        gl.glEnd();
        texture1.disable();
        
        gl.glEndList();
        
        gl.glNewList(lists+2, GL.GL_COMPILE);
        
        texture2.enable();
        texture2.bind();
        gl.glBegin(GL.GL_POLYGON);
            gl.glTexCoord2f(0, 0);
            gl.glVertex3f(0.0f, 0.0f, 0.0f);   // Top
            gl.glNormal3f(0, 0, 1);
            
            gl.glTexCoord2f(x, 0);
            gl.glVertex3f(1.0f, 0.0f, 0.0f); // Bottom Left
            gl.glNormal3f(0, 0, 1);
            
            gl.glTexCoord2f(x, x);
            gl.glVertex3f(1.0f, -1.0f, 0.0f);  // Bottom Right
            gl.glNormal3f(0, 0, 1);
            
            gl.glTexCoord2f(0, x);
            gl.glVertex3f(0f, -1.0f, 0.0f);  // Bottom Right
            gl.glNormal3f(0, 0, 1);
        gl.glEnd();
        texture2.disable();
        
        gl.glEndList();


    }
    
    public void rotate(GL gl) {
        gl.glNewList(lists, GL.GL_COMPILE);

        gl.glLoadIdentity();
        gl.glTranslatef(-2.f, 0.f, -6.f);
        gl.glRotatef(angle, 1.0f, 0.f, 0.f);
                
        gl.glCallList(lists+1);
        
        gl.glRotatef(-45, 1.f, 0.f, 0.f);
        
        gl.glCallList(lists+2);        
        gl.glEndList();
    }
    
    public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) {
        GL gl = drawable.getGL();
        GLU glu = new GLU();

        if (height <= 0) { // avoid a divide by zero error!
        
            height = 1;
        }
        final float h = (float) width / (float) height;
        gl.glViewport(0, 0, width, height);
        gl.glMatrixMode(GL.GL_PROJECTION);
        gl.glLoadIdentity();
        glu.gluPerspective(45.0f, h, 1.0, 20.0);
        gl.glMatrixMode(GL.GL_MODELVIEW);
        gl.glLoadIdentity();
    }

    public void display(GLAutoDrawable drawable) {
        GL gl = drawable.getGL();
        
        if (needsTexture) {
            reTexture(gl);
            needsTexture = false;
        }

        
        gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);

        gl.glLightfv(GL.GL_LIGHT0, GL.GL_POSITION, new float[]{1.f, 1.f, 1.f, 0.f}, 0);

        
        gl.glLoadIdentity();
        gl.glTranslatef(-2.f, 0.f, -6.f);
        gl.glRotatef(angle, 1.0f, 0.f, 0.f);
                
                texture1.enable();
        texture1.bind();
        gl.glCallList(lists+1);
        texture1.disable();
        
        gl.glRotatef(-45, 1.f, 0.f, 0.f);
        
        gl.glCallList(lists+2);      
        
//        
//        if (needsRotate) {
//            rotate(gl);
//            needsRotate = false;
//        }
//        
//        gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
//
//        gl.glLightfv(GL.GL_LIGHT0, GL.GL_POSITION, new float[]{1.f, 1.f, 1.f, 0.f}, 0);

        
//        gl.glCallList(lists);
        

        // Flush all drawing operations to the graphics card
        drawable.swapBuffers();
    }

    public void displayChanged(GLAutoDrawable drawable, boolean modeChanged, boolean deviceChanged) {
    }

    public void keyPressed(KeyEvent e) {
        if (e.getKeyCode() == KeyEvent.VK_DOWN) {
            angle -= 5;
            needsRotate = true;

        } 
        if (e.getKeyCode() == KeyEvent.VK_UP) {
            angle += 5;
            needsRotate = true;
        }
        if (e.getKeyCode() == KeyEvent.VK_ENTER) {
            Color c = c1;
            c1 = c2;
            c2 = c;
            needsTexture = true;
        }
    }

    public void keyReleased(KeyEvent e) {
    }

    public void keyTyped(KeyEvent e) {
        canvas.repaint();
    }
    
    
}

pressing up and down arrows rotates the object, pressing enter swaps the textures. After a while of doing this (1-2 minutes), the java vm crashes and it is either in the ati drivers or in a kernel system call. I've observed this on at least a dozen computers, PC and linux. Every one an ATI card. I'm sure I'm dealing with the texture resources improperly, but since I am using display lists for these surfaces, if I dispose of the texture it isn't there when the display list is called again. Any ideas?

Thank you,
--Douglas

Recommended Answers

All 2 Replies

Do you have a stack trace from when it crashes?

No, since the JVM is actually completely crashing all I get is a dump:

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0xf76f5425, pid=2118, tid=2859891568
#
# JRE version: 6.0_26-b03
# Java VM: Java HotSpot(TM) Server VM (20.1-b02 mixed mode linux-x86 )
# Problematic frame:
# C  [+0x425]  __kernel_vsyscall+0x5
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#

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

Current thread is native thread

siginfo:si_signo=SIGSEGV: si_errno=0, si_code=-6 (FPE_FLTOVF), si_addr=0x00000846

Registers:
EAX=0x00000000, EBX=0x00000846, ECX=0x00000865, EDX=0x0000000b
ESP=0xaa767284, EBP=0x00000865, ESI=0x00000020, EDI=0xf76ceff4
EIP=0xf76f5425, EFLAGS=0x00000202, CR2=0x00000004

Top of Stack: (sp=0xaa767284)
0xaa767284:   aa767294 f76c7a90 f76ceff4 acc22680
0xaa767294:   aa767398 ac6a6bf3 0000000b 00000000
0xaa7672a4:   00000000 00000000 00001000 00000000
0xaa7672b4:   00000000 00000000 00000000 00000000
0xaa7672c4:   7fffffff fffffffe ffffffff ffffffff
0xaa7672d4:   ffffffff ffffffff ffffffff ffffffff
0xaa7672e4:   ffffffff ffffffff ffffffff ffffffff
0xaa7672f4:   ffffffff ffffffff ffffffff ffffffff 

Instructions: (pc=0xf76f5425)
0xf76f5405:   00 0f 05 90 8d b4 26 00 00 00 00 b8 ad 00 00 00
0xf76f5415:   0f 05 90 90 8d b4 26 00 00 00 00 55 89 cd 0f 05
0xf76f5425:   b9 2b 00 00 00 8e d1 89 e9 5d c3 00 2e 73 68 73
0xf76f5435:   74 72 74 61 62 00 2e 68 61 73 68 00 2e 64 79 6e 

Register to memory mapping:

EAX=0x00000000 is an unknown value
EBX=0x00000846 is an unknown value
ECX=0x00000865 is an unknown value
EDX=0x0000000b is an unknown value
ESP=0xaa767284 is an unknown value
EBP=0x00000865 is an unknown value
ESI=0x00000020 is an unknown value
EDI=0xf76ceff4: <offset 0x15ff4> in /lib32/libpthread.so.0 at 0xf76b9000


Stack: [0xaa757000,0xaa768000],  sp=0xaa767284,  free space=64k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [+0x425]  __kernel_vsyscall+0x5


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

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 PSYoungGen      total 39232K, used 28886K [0xde230000, 0xe14a0000, 0xf3780000)
  eden space 28288K, 70% used [0xde230000,0xdf5b1b00,0xdfdd0000)
  from space 10944K, 81% used [0xe0930000,0xe11e4020,0xe13e0000)
  to   space 11648K, 0% used [0xdfdd0000,0xdfdd0000,0xe0930000)
 PSOldGen        total 87424K, used 17629K [0xb3780000, 0xb8ce0000, 0xde230000)
  object space 87424K, 20% used [0xb3780000,0xb48b7458,0xb8ce0000)
 PSPermGen       total 31232K, used 31217K [0xaf780000, 0xb1600000, 0xb3780000)
  object space 31232K, 99% used [0xaf780000,0xb15fc588,0xb1600000)

Code Cache  [0xf3840000, 0xf3ae0000, 0xf6840000)
 total_blobs=1228 nmethods=803 adapters=378 free_code_cache=47643008 largest_free_block=14016

Dynamic libraries:
08048000-08052000 r-xp 00000000 fc:01 630788                             /usr/local/jdk1.6.0_26/jre/bin/java
08052000-08053000 rwxp 00009000 fc:01 630788                             /usr/local/jdk1.6.0_26/jre/bin/java
0919b000-09c3a000 rwxp 00000000 00:00 0                                  [heap]
a8117000-a830a000 rwxs 00000000 00:04 1409028                            /SYSV00000000 (deleted)
a84fd000-a84fe000 ---p 00000000 00:00 0 
a84fe000-a86fe000 rwxp 00000000 00:00 0 
a870d000-a880d000 rwxs 0008a000 00:05 8328                               /dev/ati/card0
a880d000-a890d000 rwxs 00089000 00:05 8328                               /dev/ati/card0
a8a00000-a8b00000 rwxs 0009c000 00:05 8328                               /dev/ati/card0
a8b00000-a8bfc000 rwxp 00000000 00:00 0 
a8bfc000-a8c00000 ---p 00000000 00:00 0 
a8c00000-a8cf9000 rwxp 00000000 00:00 0 
a8cf9000-a8d00000 ---p 00000000 00:00 0 
a8d00000-a8df9000 rwxp 00000000 00:00 0 
a8df9000-a8e00000 ---p 00000000 00:00 0 
a8e51000-a8f51000 rwxs 0006d000 00:05 8328                               /dev/ati/card0
a9044000-a9144000 rwxs 00088000 00:05 8328                               /dev/ati/card0
a9144000-a91c4000 rwxs 00067000 00:05 8328                               /dev/ati/card0
a91c4000-a9244000 rwxs 00066000 00:05 8328                               /dev/ati/card0
a9244000-a9644000 rwxs 00065000 00:05 8328                               /dev/ati/card0
a9644000-a9a46000 rwxp 00000000 00:00 0 
a9ac7000-aa0cf000 rwxp 00000000 00:00 0 
aa0cf000-aa1cf000 rwxs 0005f000 00:05 8328                               /dev/ati/card0
aa1cf000-aa3d0000 rwxs 1120ec000 00:05 8328                              /dev/ati/card0
aa3d0000-aa3d3000 ---p 00000000 00:00 0 
aa3d3000-aa4e2000 rwxp 00000000 00:00 0 
aa4e2000-aa504000 rwxs 00000000 00:04 720901                             /SYSV00000000 (deleted)
aa5d6000-aa5eb000 r-xp 00000000 fc:01 630837                             /usr/local/jdk1.6.0_26/jre/lib/i386/libdcpr.so
aa5eb000-aa5fe000 rwxp 00014000 fc:01 630837                             /usr/local/jdk1.6.0_26/jre/lib/i386/libdcpr.so
aa5fe000-aa6f7000 rwxs 00000000 00:04 1441802                            /SYSV00000000 (deleted)
aa6f7000-aa6fa000 ---p 00000000 00:00 0 
aa6fa000-aa748000 rwxp 00000000 00:00 0 
aa748000-aa74c000 r-xp 00000000 08:03 1056821                            /lib32/libnss_dns-2.13.so
aa74c000-aa74d000 r-xp 00004000 08:03 1056821                            /lib32/libnss_dns-2.13.so
aa74d000-aa74e000 rwxp 00005000 08:03 1056821                            /lib32/libnss_dns-2.13.so
aa757000-aa758000 ---p 00000000 00:00 0 
aa758000-aa76f000 rwxp 00000000 00:00 0 
aa76f000-aae6f000 rwxs 00006000 00:05 8328                               /dev/ati/card0
aae6f000-aca92000 r-xp 00000000 fc:01 2695514                            /usr/lib32/fglrx/dri/fglrx_dri.so
aca92000-acb6d000 rwxp 01c23000 fc:01 2695514                            /usr/lib32/fglrx/dri/fglrx_dri.so
acb6d000-acc24000 rwxp 00000000 00:00 0 
acc24000-accff000 r-xp 00000000 fc:00 3277284                            /home/douglas/.netbeans/7.0/jogl-runtime/jogl.jar-natives-linux-i586/libjogl.so
accff000-acd00000 rwxp 000da000 fc:00 3277284                            /home/douglas/.netbeans/7.0/jogl-runtime/jogl.jar-natives-linux-i586/libjogl.so
acd00000-acdf1000 rwxp 00000000 00:00 0 
acdf1000-ace00000 ---p 00000000 00:00 0 
ace00000-acf00000 rwxs 0005c000 00:05 8328                               /dev/ati/card0
acf00000-ad0d9000 rwxp 00000000 00:00 0 
ad0d9000-ad100000 ---p 00000000 00:00 0 
ad100000-ad1ec000 rwxp 00000000 00:00 0 
ad1ec000-ad200000 ---p 00000000 00:00 0 
ad200000-ad2fe000 rwxp 00000000 00:00 0 
ad2fe000-ad300000 ---p 00000000 00:00 0 
ad300000-ad3ff000 rwxp 00000000 00:00 0 
ad3ff000-ad400000 ---p 00000000 00:00 0 
ad400000-ad4fa000 rwxp 00000000 00:00 0 
ad4fa000-ad500000 ---p 00000000 00:00 0 
ad500000-ad5f7000 rwxp 00000000 00:00 0 
ad5f7000-ad600000 ---p 00000000 00:00 0 
ad600000-ad6fc000 rwxp 00000000 00:00 0 
ad6fc000-ad700000 ---p 00000000 00:00 0 
ad700000-ad7fc000 rwxp 00000000 00:00 0 
ad7fc000-ad800000 ---p 00000000 00:00 0 
ad800000-ad8ff000 rwxp 00000000 00:00 0 
ad8ff000-ad900000 ---p 00000000 00:00 0 
ad900000-ad9fc000 rwxp 00000000 00:00 0 
ad9fc000-ada00000 ---p 00000000 00:00 0 
ada00000-adafc000 rwxp 00000000 00:00 0 
adafc000-adb00000 ---p 00000000 00:00 0 
adb00000-adbff000 rwxp 00000000 00:00 0 
adbff000-adc00000 ---p 00000000 00:00 0 
adc00000-adcfb000 rwxp 00000000 00:00 0 
adcfb000-add00000 ---p 00000000 00:00 0 
add00000-addfc000 rwxp 00000000 00:00 0 
addfc000-ade00000 ---p 00000000 00:00 0 
ade00000-adef9000 rwxp 00000000 00:00 0 
adef9000-adf00000 ---p 00000000 00:00 0 
adf00000-ae000000 rwxp 00000000 00:00 0 
ae003000-ae007000 rwxs 00000000 00:04 917513                             /SYSV00000000 (deleted)
ae007000-ae016000 r-xs 00667000 fc:01 630922                             /usr/local/jdk1.6.0_26/jre/lib/charsets.jar
ae016000-ae0df000 r-xp 00000000 fc:01 2695505                            /usr/lib32/fglrx/libGL.so.1.2
ae0df000-ae0ea000 rwxp 000c8000 fc:01 2695505                            /usr/lib32/fglrx/libGL.so.1.2
ae0ea000-ae100000 rwxp 00000000 00:00 0 
ae100000-ae1fd000 rwxp 00000000 00:00 0 
ae1fd000-ae200000 ---p 00000000 00:00 0 
ae202000-ae206000 rwxs 00000000 00:04 819208                             /SYSV00000000 (deleted)
ae206000-ae20d000 r-xs 00094000 fc:01 630864                             /usr/local/jdk1.6.0_26/jre/lib/jsse.jar
ae20d000-ae20f000 r-xp 00000000 fc:01 2695725                            /usr/lib32/libXinerama.so.1.0.0
ae20f000-ae210000 r-xp 00001000 fc:01 2695725                            /usr/lib32/libXinerama.so.1.0.0
ae210000-ae211000 rwxp 00002000 fc:01 2695725                            /usr/lib32/libXinerama.so.1.0.0
ae211000-ae244000 r-xp 00000000 fc:01 2695515                            /usr/lib32/fglrx/libatiadlxx.so
ae244000-ae245000 rwxp 00033000 fc:01 2695515                            /usr/lib32/fglrx/libatiadlxx.so
ae245000-ae249000 rwxs 00000000 00:04 753670                             /SYSV00000000 (deleted)
ae249000-ae250000 r-xp 00000000 fc:01 630829                             /usr/local/jdk1.6.0_26/jre/lib/i386/libnio.so
ae250000-ae251000 rwxp 00006000 fc:01 630829                             /usr/local/jdk1.6.0_26/jre/lib/i386/libnio.so
ae251000-ae262000 r-xp 00000000 08:03 1056828                            /lib32/libresolv-2.13.so
ae262000-ae263000 r-xp 00010000 08:03 1056828                            /lib32/libresolv-2.13.so
ae263000-ae264000 rwxp 00011000 08:03 1056828                            /lib32/libresolv-2.13.so
ae264000-ae266000 rwxp 00000000 00:00 0 
ae266000-ae267000 rwxs 00005000 00:05 8328                               /dev/ati/card0
ae267000-ae277000 rwxs f2200000 00:05 8328                               /dev/ati/card0
ae277000-ae28b000 r-xp 00000000 fc:01 630828                             /usr/local/jdk1.6.0_26/jre/lib/i386/libnet.so
ae28b000-ae28c000 rwxp 00013000 fc:01 630828                             /usr/local/jdk1.6.0_26/jre/lib/i386/libnet.so
ae28c000-ae28f000 ---p 00000000 00:00 0 
ae28f000-ae2dd000 rwxp 00000000 00:00 0 
ae2dd000-ae2e0000 ---p 00000000 00:00 0 
ae2e0000-ae32e000 rwxp 00000000 00:00 0 
ae32e000-ae331000 ---p 00000000 00:00 0 
ae331000-ae37f000 rwxp 00000000 00:00 0 
ae37f000-ae382000 ---p 00000000 00:00 0 
ae382000-ae3d0000 rwxp 00000000 00:00 0 
ae3d0000-ae3d1000 r-xs 00000000 08:03 802111                             /var/cache/fontconfig/c05880de57d1f5e948fdfacc138775d9-le32d4.cache-3
ae3d1000-ae3d7000 r-xs 00000000 08:03 802110                             /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-le32d4.cache-3
ae3d7000-ae3d9000 r-xs 00000000 08:03 802109                             /var/cache/fontconfig/99e8ed0e538f840c565b6ed5dad60d56-le32d4.cache-3
ae3d9000-ae3dc000 r-xs 00000000 08:03 802108                             /var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-le32d4.cache-3
ae3dc000-ae3de000 r-xs 00000000 08:03 802107                             /var/cache/fontconfig/2cd17615ca594fa2959ae173292e504c-le32d4.cache-3
ae3de000-ae3df000 r-xs 00000000 fc:00 3146620                            /home/douglas/.fontconfig/e3fa16a14183b06aa45b3e009278fd14-le32d4.cache-3
ae3df000-ae3e0000 r-xs 00000000 08:03 802106                             /var/cache/fontconfig/e7071f4a29fa870f4323321c154eba04-le32d4.cache-3
ae3e0000-ae3e3000 r-xs 00000000 08:03 802105                             /var/cache/fontconfig/6eb3985aa4124903f6ff08ba781cd364-le32d4.cache-3
ae3e3000-ae3e4000 r-xs 00000000 08:03 802104                             /var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-le32d4.cache-3
ae3e4000-ae3e5000 r-xs 00000000 08:03 802103                             /var/cache/fontconfig/0d8c3b2ac0904cb8a57a757ad11a4a08-le32d4.cache-3
ae3e5000-ae3e6000 r-xs 00000000 08:03 802102                             /var/cache/fontconfig/6a53c69dea097a2d716e069445527da8-le32d4.cache-3
ae3e6000-ae3ea000 r-xs 00000000 08:03 802101                             /var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-le32d4.cache-3
ae3ea000-ae3eb000 r-xs 00000000 fc:00 3146619                            /home/douglas/.fontconfig/79517df041c92e3f2b4a9700e7dbe3c7-le32d4.cache-3
ae3eb000-ae3ec000 r-xs 00000000 fc:00 3146618                            /home/douglas/.fontconfig/4abdb2dd99886b2b2d3168a6b22d0473-le32d4.cache-3
ae3ec000-ae3ed000 r-xs 00000000 fc:00 3146617                            /home/douglas/.fontconfig/b9af901c4f3947128be824d599af5f25-le32d4.cache-3
ae3ed000-ae3ee000 r-xs 00000000 fc:00 3146616                            /home/douglas/.fontconfig/a18183678af55fd6535fa2d00e080189-le32d4.cache-3
ae3ee000-ae3f0000 r-xs 00000000 fc:00 3146615                            /home/douglas/.fontconfig/90e84e89a4382a8db77728561d41356d-le32d4.cache-3
ae3f0000-ae3f1000 r-xs 00000000 fc:00 3146614                            /home/douglas/.fontconfig/b73ae53b2eee308c3d7feb99ac2d34cd-le32d4.cache-3
ae3f1000-ae3f2000 r-xs 00000000 fc:00 3146613                            /home/douglas/.fontconfig/407fd690308a0b04640307de6deab6da-le32d4.cache-3
ae3f2000-ae3f4000 r-xs 00000000 fc:00 3146612                            /home/douglas/.fontconfig/8039e78ad04dad2b193eec8c5f90bc4d-le32d4.cache-3
ae3f4000-ae3f5000 r-xs 00000000 fc:00 3146611                            /home/douglas/.fontconfig/27f6fa40476fb33ad65cb210c133a216-le32d4.cache-3
ae3f5000-ae3f6000 r-xs 00000000 fc:00 3146610                            /home/douglas/.fontconfig/98d684ad3abba16030bd60992dc9c5d7-le32d4.cache-3
ae3f6000-ae3f8000 r-xs 00000000 fc:00 3146609                            /home/douglas/.fontconfig/9123b38b1c36356a690c2f0bc4cbf728-le32d4.cache-3
ae3f8000-ae3ff000 r-xs 00000000 08:03 802100                             /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-le32d4.cache-3
ae3ff000-ae40a000 r-xs 00000000 08:03 802099                             /var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-le32d4.cache-3
ae40a000-ae412000 r-xs 00000000 08:03 802096                             /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-le32d4.cache-3
ae412000-ae418000 r-xs 00000000 08:03 802073                             /var/cache/fontconfig/cabbd14511b9e8a55e92af97fb3a0461-le32d4.cache-3
ae418000-ae425000 r-xs 00000000 fc:00 3146608                            /home/douglas/.fontconfig/e13b20fdb08344e0e664864cc2ede53d-le32d4.cache-3
ae426000-ae440000 r-xp 00000000 fc:01 2695919                            /usr/lib32/libgcc_s.so.1
ae440000-ae441000 r-xp 00019000 fc:01 2695919                            /usr/lib32/libgcc_s.so.1
ae441000-ae442000 rwxp 0001a000 fc:01 2695919                            /usr/lib32/libgcc_s.so.1
ae442000-ae445000 ---p 00000000 00:00 0 
ae445000-ae493000 rwxp 00000000 00:00 0 
ae493000-ae496000 ---p 00000000 00:00 0 
ae496000-ae4e4000 rwxp 00000000 00:00 0 
ae4e4000-ae4ec000 r-xp 00000000 fc:01 2695587                            /usr/lib32/libXrender.so.1.3.0
ae4ec000-ae4ed000 r-xp 00007000 fc:01 2695587                            /usr/lib32/libXrender.so.1.3.0
ae4ed000-ae4ee000 rwxp 00008000 fc:01 2695587                            /usr/lib32/libXrender.so.1.3.0
ae4ee000-ae4f6000 r-xp 00000000 fc:01 2696260                            /usr/lib32/libXcursor.so.1.0.2
ae4f6000-ae4f7000 r-xp 00007000 fc:01 2696260                            /usr/lib32/libXcursor.so.1.0.2
ae4f7000-ae4f8000 rwxp 00008000 fc:01 2696260                            /usr/lib32/libXcursor.so.1.0.2
ae4fb000-ae4fd000 rwxs 00002000 00:05 8328                               /dev/ati/card0
ae4fd000-ae504000 r-xp 00000000 fc:01 2695509                            /usr/lib32/fglrx/libatiuki.so.1.0
ae504000-ae505000 rwxp 00006000 fc:01 2695509                            /usr/lib32/fglrx/libatiuki.so.1.0
ae505000-ae506000 r-xp 00000000 fc:00 3277285                            /home/douglas/.netbeans/7.0/jogl-runtime/jogl.jar-natives-linux-i586/libjogl_awt.so
ae506000-ae507000 rwxp 00000000 fc:00 3277285                            /home/douglas/.netbeans/7.0/jogl-runtime/jogl.jar-natives-linux-i586/libjogl_awt.so
ae507000-ae508000 r-xp 00000000 fc:01 630853                             /usr/local/jdk1.6.0_26/jre/lib/i386/libjawt.so
ae508000-ae509000 rwxp 00000000 fc:01 630853                             /usr/local/jdk1.6.0_26/jre/lib/i386/libjawt.so
ae509000-ae50d000 r-xp 00000000 fc:01 2695550                            /usr/lib32/libXxf86vm.so.1.0.0
ae50d000-ae50e000 r-xp 00003000 fc:01 2695550                            /usr/lib32/libXxf86vm.so.1.0.0
ae50e000-ae50f000 rwxp 00004000 fc:01 2695550                            /usr/lib32/libXxf86vm.so.1.0.0
ae50f000-ae510000 r-xp 00000000 fc:00 3277261                            /home/douglas/.netbeans/7.0/gluegen-runtime/gluegen-rt.jar-natives-linux-i586/libgluegen-rt.so
ae510000-ae511000 rwxp 00000000 fc:00 3277261                            /home/douglas/.netbeans/7.0/gluegen-runtime/gluegen-rt.jar-natives-linux-i586/libgluegen-rt.so
ae511000-ae519000 r-xs 00115000 fc:01 630893                             /usr/local/jdk1.6.0_26/jre/lib/resources.jar
ae519000-ae51c000 ---p 00000000 00:00 0 
ae51c000-ae56a000 rwxp 00000000 00:00 0 
ae56a000-ae5e3000 r-xp 00000000 fc:01 630847                             /usr/local/jdk1.6.0_26/jre/lib/i386/libfontmanager.so
ae5e3000-ae5ed000 rwxp 00078000 fc:01 630847                             /usr/local/jdk1.6.0_26/jre/lib/i386/libfontmanager.so
ae5ed000-ae5f2000 rwxp 00000000 00:00 0 
ae5f2000-ae5f6000 r-xp 00000000 fc:01 2695891                            /usr/lib32/libXdmcp.so.6.0.0
ae5f6000-ae5f7000 r-xp 00003000 fc:01 2695891                            /usr/lib32/libXdmcp.so.6.0.0
ae5f7000-ae5f8000 rwxp 00004000 fc:01 2695891                            /usr/lib32/libXdmcp.so.6.0.0
ae5f8000-ae60f000 r-xp 00000000 fc:01 2696199                            /usr/lib32/libxcb.so.1.1.0
ae60f000-ae610000 r-xp 00016000 fc:01 2696199                            /usr/lib32/libxcb.so.1.1.0
ae610000-ae611000 rwxp 00017000 fc:01 2696199                            /usr/lib32/libxcb.so.1.1.0
ae611000-ae61e000 r-xp 00000000 fc:01 2695846                            /usr/lib32/libXi.so.6.1.0
ae61e000-ae61f000 r-xp 0000c000 fc:01 2695846                            /usr/lib32/libXi.so.6.1.0
ae61f000-ae620000 rwxp 0000d000 fc:01 2695846                            /usr/lib32/libXi.so.6.1.0
ae620000-ae624000 r-xp 00000000 fc:01 2696217                            /usr/lib32/libXtst.so.6.1.0
ae624000-ae625000 r-xp 00003000 fc:01 2696217                            /usr/lib32/libXtst.so.6.1.0
ae625000-ae626000 rwxp 00004000 fc:01 2696217                            /usr/lib32/libXtst.so.6.1.0
ae626000-ae73c000 r-xp 00000000 fc:01 2695901                            /usr/lib32/libX11.so.6.3.0
ae73c000-ae73d000 ---p 00116000 fc:01 2695901                            /usr/lib32/libX11.so.6.3.0
ae73d000-ae73e000 r-xp 00116000 fc:01 2695901                            /usr/lib32/libX11.so.6.3.0
ae73e000-ae740000 rwxp 00117000 fc:01 2695901                            /usr/lib32/libX11.so.6.3.0
ae740000-ae741000 rwxp 00000000 00:00 0 
ae741000-ae74e000 r-xp 00000000 fc:01 2696301                            /usr/lib32/libXext.so.6.4.0
ae74e000-ae74f000 r-xp 0000c000 fc:01 2696301                            /usr/lib32/libXext.so.6.4.0
ae74f000-ae750000 rwxp 0000d000 fc:01 2696301                            /usr/lib32/libXext.so.6.4.0
ae750000-ae7d5000 r-xp 00000000 fc:01 630839                             /usr/local/jdk1.6.0_26/jre/lib/i386/libawt.so
ae7d5000-ae7dc000 rwxp 00085000 fc:01 630839                             /usr/local/jdk1.6.0_26/jre/lib/i386/libawt.so
ae7dc000-ae800000 rwxp 00000000 00:00 0 
ae800000-ae8fe000 rwxp 00000000 00:00 0 
ae8fe000-ae900000 ---p 00000000 00:00 0 
ae901000-ae903000 r-xp 00000000 fc:01 2696363                            /usr/lib32/libXau.so.6.0.0
ae903000-ae904000 r-xp 00001000 fc:01 2696363                            /usr/lib32/libXau.so.6.0.0
ae904000-ae905000 rwxp 00002000 fc:01 2696363                            /usr/lib32/libXau.so.6.0.0
ae906000-ae90a000 r-xp 00000000 fc:01 2696031                            /usr/lib32/libXfixes.so.3.1.0
ae90a000-ae90b000 r-xp 00003000 fc:01 2696031                            /usr/lib32/libXfixes.so.3.1.0
ae90b000-ae90c000 rwxp 00004000 fc:01 2696031                            /usr/lib32/libXfixes.so.3.1.0
ae90c000-ae90f000 r-xs 00000000 08:03 802098                             /var/cache/fontconfig/d60319d88cac85ba9e1a07bd06cfbb8c-le32d4.cache-3
ae90f000-ae912000 r-xs 00000000 fc:00 3146607                            /home/douglas/.fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-le32d4.cache-3
ae912000-ae918000 r-xs 00000000 fc:00 3146606                            /home/douglas/.fontconfig/b83386915dae36184c7e3985fd26e4b1-le32d4.cache-3
ae918000-ae926000 r-xs 00000000 fc:00 3146605                            /home/douglas/.fontconfig/865f88548240fee46819705c6468c165-le32d4.cache-3
ae926000-ae969000 r-xp 00000000 fc:01 630842                             /usr/local/jdk1.6.0_26/jre/lib/i386/xawt/libmawt.so
ae969000-ae96b000 rwxp 00043000 fc:01 630842                             /usr/local/jdk1.6.0_26/jre/lib/i386/xawt/libmawt.so
ae96b000-ae96c000 rwxp 00000000 00:00 0 
ae96c000-ae976000 r-xs 00072000 fc:00 3278568                            /home/douglas/NetBeansProjects/libraries/sanselan-0.97-incubator/sanselan-0.97-incubator.jar
ae976000-ae978000 r-xs 00009000 fc:00 3412500                            /home/douglas/NetBeansProjects/SQLItem/dist/lib/logger.jar
ae978000-ae97f000 r-xs 000b1000 fc:00 3412479                            /home/douglas/NetBeansProjects/SQLItem/dist/lib/mysql-connector-java-5.1.13-bin.jar
ae97f000-ae981000 r-xs 0001e000 fc:00 3412520                            /home/douglas/NetBeansProjects/SQLItem/dist/SQLItem.jar
ae981000-ae982000 ---p 00000000 00:00 0 
ae982000-aea02000 rwxp 00000000 00:00 0 
aea02000-aea05000 ---p 00000000 00:00 0 
aea05000-aea53000 rwxp 00000000 00:00 0 
aea53000-aea56000 ---p 00000000 00:00 0 
aea56000-aead4000 rwxp 00000000 00:00 0 
aead4000-aead7000 ---p 00000000 00:00 0 
aead7000-aeb55000 rwxp 00000000 00:00 0 
aeb55000-aeb58000 ---p 00000000 00:00 0 
aeb58000-aeba6000 rwxp 00000000 00:00 0 
aeba6000-aecc6000 r-xp 00178000 fc:01 328217                             /usr/lib/locale/locale-archive
aecc6000-aeec6000 r-xp 00000000 fc:01 328217                             /usr/lib/locale/locale-archive
aeec6000-aeec9000 ---p 00000000 00:00 0 
aeec9000-aef17000 rwxp 00000000 00:00 0 
aef17000-aef1a000 ---p 00000000 00:00 0 
aef1a000-aef68000 rwxp 00000000 00:00 0 
aef68000-af100000 r-xs 03029000 fc:01 630934                             /usr/local/jdk1.6.0_26/jre/lib/rt.jar
af100000-af1fc000 rwxp 00000000 00:00 0 
af1fc000-af200000 ---p 00000000 00:00 0 
af201000-af207000 r-xs 00039000 fc:00 3408747                            /home/douglas/NetBeansProjects/libraries/snakeyaml/target/snakeyaml-1.8.jar
af207000-af209000 r-xs 00009000 fc:00 3277363                            /home/douglas/NetBeansProjects/logger/dist/logger.jar
af209000-af210000 r-xs 000b1000 fc:01 622595                             /usr/local/netbeans-7.0/ide/modules/ext/mysql-connector-java-5.1.13-bin.jar
af210000-af212000 r-xs 00007000 fc:00 3148037                            /home/douglas/NetBeansProjects/libraries/Jama-1.0.2.jar
af212000-af214000 r-xs 00005000 fc:00 3278553                            /home/douglas/NetBeansProjects/libraries/http/httpcomponents-client-4.0.3/lib/httpmime-4.0.3.jar
af214000-af219000 r-xs 00026000 fc:00 3278555                            /home/douglas/NetBeansProjects/libraries/http/httpcomponents-client-4.0.3/lib/httpcore-4.0.1.jar
af219000-af220000 r-xs 00041000 fc:00 3278554                            /home/douglas/NetBeansProjects/libraries/http/httpcomponents-client-4.0.3/lib/httpclient-4.0.3.jar
af220000-af227000 r-xs 0004e000 fc:00 3278558                            /home/douglas/NetBeansProjects/libraries/http/httpcomponents-client-4.0.3/lib/apache-mime4j-0.6.jar
af227000-af232000 r-xs 00110000 fc:00 3277245                            /home/douglas/.netbeans/7.0/jogl-runtime/jogl.jar
af232000-af233000 ---p 00000000 00:00 0 
af233000-af2e7000 rwxp 00000000 00:00 0 
af2e7000-af2e8000 ---p 00000000 00:00 0 
af2e8000-af368000 rwxp 00000000 00:00 0 
af368000-af369000 ---p 00000000 00:00 0 
af369000-af3f9000 rwxp 00000000 00:00 0 
af3f9000-af409000 rwxp 00000000 00:00 0 
af409000-af434000 rwxp 00000000 00:00 0 
af434000-af55f000 rwxp 00000000 00:00 0 
af55f000-af56f000 rwxp 00000000 00:00 0 
af56f000-af57f000 rwxp 00000000 00:00 0 
af57f000-af5aa000 rwxp 00000000 00:00 0 
af5aa000-af6d4000 rwxp 00000000 00:00 0 
af6d4000-af6ee000 rwxp 00000000 00:00 0 
af6ee000-af77f000 rwxp 00000000 00:00 0 
af77f000-b1600000 rwxp 00000000 00:00 0 
b1600000-b3780000 rwxp 00000000 00:00 0 
b3780000-b8ce0000 rwxp 00000000 00:00 0 
b8ce0000-de230000 rwxp 00000000 00:00 0 
de230000-e14a0000 rwxp 00000000 00:00 0 
e14a0000-f3780000 rwxp 00000000 00:00 0 
f3780000-f378b000 rwxp 00000000 00:00 0 
f378b000-f3840000 rwxp 00000000 00:00 0 
f3840000-f3ae0000 rwxp 00000000 00:00 0 
f3ae0000-f6840000 rwxp 00000000 00:00 0 
f6840000-f684a000 r-xp 00000000 08:03 1056822                            /lib32/libnss_files-2.13.so
f684a000-f684b000 r-xp 00009000 08:03 1056822                            /lib32/libnss_files-2.13.so
f684b000-f684c000 rwxp 0000a000 08:03 1056822                            /lib32/libnss_files-2.13.so
f684c000-f685f000 r-xp 00000000 08:03 1056819                            /lib32/libnsl-2.13.so
f685f000-f6860000 r-xp 00012000 08:03 1056819                            /lib32/libnsl-2.13.so
f6860000-f6861000 rwxp 00013000 08:03 1056819                            /lib32/libnsl-2.13.so
f6861000-f6863000 rwxp 00000000 00:00 0 
f6863000-f6864000 r-xs 00000000 fc:00 3148484                            /home/douglas/.fontconfig/4794a0821666d79190d59a36cb4f44b5-le32d4.cache-3
f6864000-f6865000 r-xs 0001c000 fc:00 3277362                            /home/douglas/NetBeansProjects/logger/dist/lib/swing-layout-1.0.4.jar
f6865000-f6867000 r-xs 0000d000 fc:00 3278556                            /home/douglas/NetBeansProjects/libraries/http/httpcomponents-client-4.0.3/lib/commons-logging-1.1.1.jar
f6867000-f6869000 r-xs 0000a000 fc:00 3278557                            /home/douglas/NetBeansProjects/libraries/http/httpcomponents-client-4.0.3/lib/commons-codec-1.3.jar
f6869000-f686b000 r-xs 00004000 fc:00 3277257                            /home/douglas/.netbeans/7.0/gluegen-runtime/gluegen-rt.jar
f686b000-f687a000 r-xp 00000000 fc:01 630824                             /usr/local/jdk1.6.0_26/jre/lib/i386/libzip.so
f687a000-f687c000 rwxp 0000e000 fc:01 630824                             /usr/local/jdk1.6.0_26/jre/lib/i386/libzip.so
f687c000-f6884000 rwxs 00000000 08:03 1056901                            /tmp/hsperfdata_douglas/2118
f6884000-f68a7000 r-xp 00000000 fc:01 630820                             /usr/local/jdk1.6.0_26/jre/lib/i386/libjava.so
f68a7000-f68a9000 rwxp 00023000 fc:01 630820                             /usr/local/jdk1.6.0_26/jre/lib/i386/libjava.so
f68a9000-f68b0000 r-xp 00000000 08:03 1056829                            /lib32/librt-2.13.so
f68b0000-f68b1000 r-xp 00006000 08:03 1056829                            /lib32/librt-2.13.so
f68b1000-f68b2000 rwxp 00007000 08:03 1056829                            /lib32/librt-2.13.so
f68b2000-f68b5000 ---p 00000000 00:00 0 
f68b5000-f6903000 rwxp 00000000 00:00 0 
f6903000-f6927000 r-xp 00000000 08:03 1056815                            /lib32/libm-2.13.so
f6927000-f6928000 r-xp 00023000 08:03 1056815                            /lib32/libm-2.13.so
f6928000-f6929000 rwxp 00024000 08:03 1056815                            /lib32/libm-2.13.so
f6929000-f70db000 r-xp 00000000 fc:01 630806                             /usr/local/jdk1.6.0_26/jre/lib/i386/server/libjvm.so
f70db000-f712f000 rwxp 007b1000 fc:01 630806                             /usr/local/jdk1.6.0_26/jre/lib/i386/server/libjvm.so
f712f000-f754f000 rwxp 00000000 00:00 0 
f754f000-f76a5000 r-xp 00000000 08:03 1050790                            /lib32/libc-2.13.so
f76a5000-f76a6000 ---p 00156000 08:03 1050790                            /lib32/libc-2.13.so
f76a6000-f76a8000 r-xp 00156000 08:03 1050790                            /lib32/libc-2.13.so
f76a8000-f76a9000 rwxp 00158000 08:03 1050790                            /lib32/libc-2.13.so
f76a9000-f76ac000 rwxp 00000000 00:00 0 
f76ac000-f76ae000 r-xp 00000000 08:03 1054617                            /lib32/libdl-2.13.so
f76ae000-f76af000 r-xp 00001000 08:03 1054617                            /lib32/libdl-2.13.so
f76af000-f76b0000 rwxp 00002000 08:03 1054617                            /lib32/libdl-2.13.so
f76b0000-f76b7000 r-xp 00000000 fc:01 630822                             /usr/local/jdk1.6.0_26/jre/lib/i386/jli/libjli.so
f76b7000-f76b9000 rwxp 00006000 fc:01 630822                             /usr/local/jdk1.6.0_26/jre/lib/i386/jli/libjli.so
f76b9000-f76ce000 r-xp 00000000 08:03 1056827                            /lib32/libpthread-2.13.so
f76ce000-f76cf000 r-xp 00014000 08:03 1056827                            /lib32/libpthread-2.13.so
f76cf000-f76d0000 rwxp 00015000 08:03 1056827                            /lib32/libpthread-2.13.so
f76d0000-f76d2000 rwxp 00000000 00:00 0 
f76d2000-f76db000 r-xp 00000000 08:03 1056824                            /lib32/libnss_nis-2.13.so
f76db000-f76dc000 r-xp 00008000 08:03 1056824                            /lib32/libnss_nis-2.13.so
f76dc000-f76dd000 rwxp 00009000 08:03 1056824                            /lib32/libnss_nis-2.13.so
f76dd000-f76e3000 r-xp 00000000 08:03 1056820                            /lib32/libnss_compat-2.13.so
f76e3000-f76e4000 r-xp 00005000 08:03 1056820                            /lib32/libnss_compat-2.13.so
f76e4000-f76e5000 rwxp 00006000 08:03 1056820                            /lib32/libnss_compat-2.13.so
f76e5000-f76e6000 rwxp 00000000 00:00 0 
f76e6000-f76e7000 r-xp 00000000 00:00 0 
f76e7000-f76f2000 r-xp 00000000 fc:01 630819                             /usr/local/jdk1.6.0_26/jre/lib/i386/libverify.so
f76f2000-f76f3000 rwxp 0000b000 fc:01 630819                             /usr/local/jdk1.6.0_26/jre/lib/i386/libverify.so
f76f3000-f76f5000 rwxp 00000000 00:00 0 
f76f5000-f76f6000 r-xp 00000000 00:00 0                                  [vdso]
f76f6000-f7712000 r-xp 00000000 08:03 1050787                            /lib32/ld-2.13.so
f7712000-f7713000 r-xp 0001b000 08:03 1050787                            /lib32/ld-2.13.so
f7713000-f7714000 rwxp 0001c000 08:03 1050787                            /lib32/ld-2.13.so
ffe04000-ffe25000 rwxp 00000000 00:00 0                                  [stack]

VM Arguments:
jvm_args: -Dfile.encoding=UTF-8 -Xmx1024m -Xms128m -Djava.library.path=/home/douglas/.netbeans/7.0/jogl-runtime/jogl.jar-natives-linux-i586:/home/douglas/.netbeans/7.0/gluegen-runtime/gluegen-rt.jar-natives-linux-i586 
java_command: com.protocase.viewer.JDesigner
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
USERNAME=douglas
LD_LIBRARY_PATH=/usr/local/jdk1.6.0_26/jre/lib/i386/server:/usr/local/jdk1.6.0_26/jre/lib/i386:/usr/local/jdk1.6.0_26/jre/../lib/i386:/usr/local/jdk1.6.0_26/jre/lib/i386/client:/usr/local/jdk1.6.0_26/jre/lib/i386:/usr/local/jdk1.6.0_26/jre/../lib/i386
SHELL=/bin/bash
DISPLAY=:0

Signal Handlers:
SIGSEGV: [libjvm.so+0x725510], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGBUS: [libjvm.so+0x725510], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGFPE: [libjvm.so+0x5dff20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGPIPE: [libjvm.so+0x5dff20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGXFSZ: [libjvm.so+0x5dff20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGILL: [libjvm.so+0x5dff20], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGUSR2: [libjvm.so+0x5e3160], sa_mask[0]=0x00000004, sa_flags=0x10000004
SIGHUP: [libjvm.so+0x5e2d40], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
SIGTERM: [libjvm.so+0x5e2d40], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
SIGQUIT: [libjvm.so+0x5e2d40], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004


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

OS:squeeze/sid

uname:Linux 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64
libc:glibc 2.13 NPTL 2.13 
rlimit: STACK 8192k, CORE 0k, NPROC infinity, NOFILE 4096, AS infinity
load average:0.09 0.08 0.10

/proc/meminfo:
MemTotal:        3794648 kB
MemFree:         2532020 kB
Buffers:          223092 kB
Cached:           365752 kB
SwapCached:            0 kB
Active:           494744 kB
Inactive:         496376 kB
Active(anon):     403048 kB
Inactive(anon):     5360 kB
Active(file):      91696 kB
Inactive(file):   491016 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:       8392624 kB
SwapFree:        8392624 kB
Dirty:                48 kB
Writeback:             0 kB
AnonPages:        402284 kB
Mapped:            76504 kB
Shmem:              6140 kB
Slab:              40732 kB
SReclaimable:      27016 kB
SUnreclaim:        13716 kB
KernelStack:        1888 kB
PageTables:         5396 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    10289948 kB
Committed_AS:     775320 kB
VmallocTotal:   34359738367 kB
VmallocUsed:       65988 kB
VmallocChunk:   34359669740 kB
HardwareCorrupted:     0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      189440 kB
DirectMap2M:     2693120 kB
DirectMap1G:     1048576 kB


CPU:total 2 (2 cores per cpu, 1 threads per core) family 16 model 6 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, popcnt, mmxext, 3dnow, 3dnowext, lzcnt, sse4a

/proc/cpuinfo:
processor	: 0
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 6
model name	: AMD Turion(tm) II P540 Dual-Core Processor
stepping	: 3
cpu MHz		: 800.000
cache size	: 1024 KB
physical id	: 0
siblings	: 2
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save
bogomips	: 4788.08
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

processor	: 1
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 6
model name	: AMD Turion(tm) II P540 Dual-Core Processor
stepping	: 3
cpu MHz		: 800.000
cache size	: 1024 KB
physical id	: 0
siblings	: 2
core id		: 1
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save
bogomips	: 4788.05
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate



Memory: 4k page, physical 3794648k(2532020k free), swap 8392624k(8392624k free)

vm_info: Java HotSpot(TM) Server VM (20.1-b02) for linux-x86 JRE (1.6.0_26-b03), built on May  4 2011 01:04:10 by "java_re" with gcc 3.2.1-7a (J2SE release)

time: Mon Jun 27 14:37:52 2011
elapsed time: 631 seconds
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.