HelloWorld don't work in eclipse-cdt ... !!

Hi all,
can anybody tell me, what i'm doing wrong here?
i have installed eclipse-cdt with pacman and in my second try i downloaded it from eclipse.org.
I always get the same problems ..
I created a new Hello World c++ project, but i couldn't compile it successfully.
**** Build of configuration Debug for project test2 ****
make all
Building file: ../src/test2.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/test2.d" -MT"src/test2.d" -o"src/test2.o" "../src/test2.cpp"
../src/test2.cpp:9:20: warning: iostream: No such file or directory
../src/test2.cpp: In function 'int main()':
../src/test2.cpp:13: error: 'cout' was not declared in this scope
../src/test2.cpp:13: error: 'endl' was not declared in this scope
make: *** [src/test2.o] Error 1
Looks like the compiler don't find the includes and librarys. By default the include search paths for the compiler are
/usr/inlude
/usr/local/include
Then I added to the include path
/usr/include/c++/4.3.3
and to the librarys paths
/usr/lib
/usr/local/lib
then i got this result
**** Build of configuration Debug for project test ****
make all
Building file: ../src/test.cpp
Invoking: GCC C++ Compiler
g++ -I/usr/include -I/usr/include/c++/4.3.3 -I/usr/local/include -O0 -g3 -Wall -MMD -MP -MF"src/test.d" -MT"src/test.d" -o"src/test.o" "../src/test.cpp"
In file included from /usr/include/c++/4.3.3/iosfwd:46,
from /usr/include/c++/4.3.3/ios:44,
from /usr/include/c++/4.3.3/ostream:45,
from /usr/include/c++/4.3.3/iostream:45,
from ../src/test.cpp:9:
/usr/include/c++/4.3.3/bits/stringfwd.h:46: error: expected constructor, destructor, or type conversion before '(' token
/usr/include/c++/4.3.3/bits/stringfwd.h:55: error: expected type-specifier before 'allocator'
/usr/include/c++/4.3.3/bits/stringfwd.h:55: error: expected '>' before 'allocator'
/usr/include/c++/4.3.3/bits/stringfwd.h:60: error: template argument 3 is invalid
/usr/include/c++/4.3.3/bits/stringfwd.h:60: error: invalid type in declaration before ';' token
/usr/include/c++/4.3.3/bits/stringfwd.h:68: error: '_GLIBCXX_END_NAMESPACE' does not name a type
In file included from /usr/include/c++/4.3.3/cwchar:49,
from /usr/include/c++/4.3.3/bits/postypes.h:47,
from /usr/include/c++/4.3.3/iosfwd:47,
from /usr/include/c++/4.3.3/ios:44,
from /usr/include/c++/4.3.3/ostream:45,
from /usr/include/c++/4.3.3/iostream:45,
from ../src/test.cpp:9:
/usr/include/c++/4.3.3/cstddef:57: error: '::size_t' has not been declared
In file included from /usr/include/c++/4.3.3/bits/postypes.h:47,
from /usr/include/c++/4.3.3/iosfwd:47,
from /usr/include/c++/4.3.3/ios:44,
from /usr/include/c++/4.3.3/ostream:45,
from /usr/include/c++/4.3.3/iostream:45,
from ../src/test.cpp:9:
/usr/include/c++/4.3.3/cwchar:61: error: expected constructor, destructor, or type conversion before 'extern'
In file included from /usr/include/c++/4.3.3/ios:45,
from /usr/include/c++/4.3.3/ostream:45,
from /usr/include/c++/4.3.3/iostream:45,
from ../src/test.cpp:9:
/usr/include/c++/4.3.3/exception:40: error: expected declaration before end of line
make: *** [src/test.o] Error 1
by the way, if i take a other short c++ project and do the "make all" on console ... it works ..
any help?
Thanks

I have the same problem here. This week I tried to install eclipse from pacman, and I also tried downloading the cdt version from eclipse.org, to my girlfriend's computer and I have the same problem you have. When I compile within eclipse, g++ can't find standard libraries. Invoking g++ from the shell, works as it should.
The strange thing is that in my main computer eclipse is able to compile perfectly.

Similar Messages

  • Eclipse-cdt debugger not working properly

    I have the latest versions of eclipse, eclipse-cdt, and gdb via pacman, and when I go to debug a simple program in Eclipse, I get the following errors:
    Stopped due to shared library event
    Stopped due to shared library event
    Single stepping until exit from function __libc_start_main,
    which has no line number information.
    mi_cmd_stack_list_frames: No stack.
    The debugging functions properly (for the most part, I noticed that I can't step into the standard C++ headers, though), but after the debug ends it displays the above error. Any idea what's wrong? The relevant part of the gdb trace is:
    [1,139,908,307,875] 5-gdb-show prompt
    [1,139,908,307,876] (gdb)
    [1,139,908,307,877] 5^done,value="(gdb) "
    [1,139,908,307,883] 6-stack-list-frames
    [1,139,908,307,883] (gdb)
    [1,139,908,307,884] &"mi_cmd_stack_list_frames: No stack.n"
    [1,139,908,307,886] 6^error,msg="mi_cmd_stack_list_frames: No stack."
    [1,139,908,308,072] 7-gdb-set auto-solib-add on
    [1,139,908,308,073] (gdb)
    [1,139,908,308,074] 7^done
    [1,139,908,328,397] ~"Single stepping until exit from function __libc_start_main, nwhich has no lin
    e number information.n"
    [1,139,908,328,437] 112*stopped,reason="exited-normally"
    [1,139,908,328,582] 113-gdb-exit
    [1,139,908,328,608] (gdb)

    Originally posted by: ccvural.cerenbilgisayar.com.tr
    nexus yazmış:
    > Hi:
    >
    > I am currently trying to debug a multi-threaded program writtten in C++,
    > with CDT and Eclipse. But, debugger seems to be not working properly.
    > Since, debugger sometimes stops in different lines that are not actually
    > breakpoints. And also debugger turns back in the code, miss some
    > breakpoints.
    > Below, I give information about what I use for developing:
    >
    > Eclipse 3.1.1
    > Plug-in: CDT 3.0.2
    > gcc (GCC) 3.4.4
    >
    > Debugger: GDB debugger Shared Libraries: None
    > Protocol: mi
    >
    > Thanks...
    >
    What is your Operating System. Linux , Windows ?
    If it's windows cygwin is better than MinGW while debugging, especiallly
    with multithreading
    Regards
    CC Vural

  • Debugging with Eclipse CDT

    Hi,
    I've successfully configured the CDT to point to Flascc toolchain and it actually produces a 3.0 MB air executable (yay). (Though I don't know how to replase O3 switch with -O4 switch and also don't know how to change the name of the output file to Out.swf in case of -emit-swf. help/hints appreciated)
    I tried to configure flascc gdb with CDT (local app debugging) but failed. Can anyone tell how to configure CDT to debug swf files ? Local, attached or remote debugging, anying please ? I am using Mac OSX.

    I was once able to get FlasCC gdb working within Eclipse on a Mac.  I'm not sure if that will work with an AIR executable.
    These were the rough instructions of how I got debugging setup.  Your mileage may vary and you may need to make some changes based on how your project is setup.
    When debugging using FlasCC GDB you need to set an environment variable called FLASCC_GDB_RUNTIME that points to the application to launch the SWF with. This will either be a standalone Flash Player Debugger or a browser that has a Flash Player Debugger plugin.
    To set this variable in Eclipse:
    Right Click the Project > Properties
    C/C++ Build > Environment
    Click Add
    Name: FLASCC_GDB_RUNTIME
    Value: /Users/path/to/runtimes/player/11.1/mac/Flash Player Debugger.app
    Next create a new debug configuration:
    Click the "Green Bug Button Down Arrow"
    Click Debug Configurations...
    Create a new "C/C++ Attach to Application" configuration
    Set the "C/C++ Application:" field to your SWF using the Browse button
    Select the Debugger tab
    Change the "GDB debugger:" field to point to the gdb in your alchemy build using the Browse button
    Click Debug
    Click New...
    Select the SWF file
    At this point the debugger view should take over and show what appears to be a source not found error. Ignore this error by pressing the green continue button.You should now be broken at main.If you are using Windows you may need to add a path mapping so CDT knows how to map /cygdrive/c/ style paths to native C:/ style paths:
    In your Debug Configuration go to the Source tab
    Click Add...
    Choose Path Mapping and click OK
    Click Add
    Set the Compilation Path to the Cygwin style path to your source drive (/cygdrive/c/)
    Set the Local file system path to the Windows style path to your source drive (C:/)
    Note: Recent versions of Eclipse may have broken this workflow, so you may need to try an older build of Eclipse.
    Note: Debugging is not supported on projector executables, only on SWFs running in the standalone Flash Player Debugger or in a browser that has the Flash Player Debugger installed.

  • Crashes of Eclipse CDT

    Hi,
    I have a problem with eclipse CDT (Helios) :
    It crash regularly when i use it with no specific action (different thing each times)...
    I try bundle version from eclipse web site and archlinux package with same issue.
    Any idea ?
    Thanks a lot.
    Here is log file :
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00007fe4265acbd6, pid=5808, tid=140617378440960
    # JRE version: 6.0_23-b05
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (19.0-b09 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    # j org.eclipse.cdt.internal.core.dom.parser.c.CVisitor.createBinding(Lorg/eclipse/cdt/core/dom/ast/IASTStatement;)Lorg/eclipse/cdt/core/dom/ast/IBinding;+72
    # 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 (0x0000000042224800): JavaThread "Worker-7" [_thread_in_Java, id=5948, stack(0x00007fe408d42000,0x00007fe408e43000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000053646c71
    Registers:
    RAX=0x00000000d9f781e0, RBX=0x0000000000000004, RCX=0x0000000053646c69, RDX=0x0000000070800001
    RSP=0x00007fe408e410e8, RBP=0x00007fe408e41138, RSI=0x00000000fa4a60c8, RDI=0x0000000000000007
    R8 =0x000000000000005f, R9 =0x0000000000000007, R10=0x00007fe42ae53340, R11=0x0000000000000062
    R12=0x0000000000000000, R13=0x00000000dbc70e60, R14=0x00007fe408e41188, R15=0x0000000042224800
    RIP=0x00007fe4265acbd6, EFL=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    Register to memory mapping:
    RAX=0x00000000d9f781e0
    {instance class}
    - klass: {other class}
    RBX=0x0000000000000004
    0x0000000000000004 is pointing to unknown location
    RCX=0x0000000053646c69
    0x0000000053646c69 is pointing to unknown location
    RDX=0x0000000070800001
    0x0000000070800001 is pointing to unknown location
    RSP=0x00007fe408e410e8
    0x00007fe408e410e8 is pointing into the stack for thread: 0x0000000042224800
    "Worker-7" prio=10 tid=0x0000000042224800 nid=0x173c runnable [0x0000000000000000]
    java.lang.Thread.State: RUNNABLE
    RBP=0x00007fe408e41138
    0x00007fe408e41138 is pointing into the stack for thread: 0x0000000042224800
    "Worker-7" prio=10 tid=0x0000000042224800 nid=0x173c runnable [0x0000000000000000]
    java.lang.Thread.State: RUNNABLE
    RSI=0x00000000fa4a60c8
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xe0000000]
    Stack: [0x00007fe408d42000,0x00007fe408e43000], sp=0x00007fe408e410e8, free space=1020k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    j org.eclipse.cdt.internal.core.dom.parser.c.CVisitor.createBinding(Lorg/eclipse/cdt/core/dom/ast/IASTStatement;)Lorg/eclipse/cdt/core/dom/ast/IBinding;+72
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00007fe414424000 JavaThread "Worker-13" [_thread_blocked, id=6200, stack(0x00007fe401376000,0x00007fe401477000)]
    0x00007fe4140ed800 JavaThread "Worker-12" [_thread_blocked, id=6199, stack(0x00007fe401275000,0x00007fe401376000)]
    0x00000000435f8000 JavaThread "Worker-11" [_thread_blocked, id=6157, stack(0x00007fe401477000,0x00007fe401578000)]
    0x00007fe420906800 JavaThread "Worker-10" [_thread_blocked, id=6041, stack(0x00007fe4191cf000,0x00007fe4192d0000)]
    0x00007fe423467000 JavaThread "org.eclipse.cdt.internal.ui.text.CReconciler" daemon [_thread_blocked, id=6011, stack(0x00007fe409210000,0x00007fe409311000)]
    0x00007fe420921000 JavaThread "org.eclipse.cdt.internal.ui.text.CReconciler" daemon [_thread_blocked, id=5981, stack(0x00007fe419c87000,0x00007fe419d88000)]
    0x00000000430eb800 JavaThread "org.eclipse.cdt.internal.ui.text.CReconciler" daemon [_thread_blocked, id=5976, stack(0x00007fe408c41000,0x00007fe408d42000)]
    =>0x0000000042224800 JavaThread "Worker-7" [_thread_in_Java, id=5948, stack(0x00007fe408d42000,0x00007fe408e43000)]
    0x00000000425d4800 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=5892, stack(0x00007fe406abf000,0x00007fe406bc0000)]
    0x00000000435eb000 JavaThread "Worker-6" [_thread_blocked, id=5888, stack(0x00007fe408b40000,0x00007fe408c41000)]
    0x000000004264d000 JavaThread "Worker-3" [_thread_blocked, id=5885, stack(0x00007fe418c7b000,0x00007fe418d7c000)]
    0x00007fe42048d800 JavaThread "Worker-1" [_thread_blocked, id=5832, stack(0x00007fe418b6e000,0x00007fe418c6f000)]
    0x0000000042cd1000 JavaThread "Worker-JM" [_thread_blocked, id=5827, stack(0x00007fe419a85000,0x00007fe419b86000)]
    0x00000000426d6000 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=5826, stack(0x00007fe419b86000,0x00007fe419c87000)]
    0x00000000435b1800 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=5824, stack(0x00007fe419d88000,0x00007fe419e89000)]
    0x00007fe420504000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=5823, stack(0x00007fe419e89000,0x00007fe419f8a000)]
    0x00000000429e3800 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=5822, stack(0x00007fe419f94000,0x00007fe41a095000)]
    0x00007fe420001800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5820, stack(0x00007fe424f84000,0x00007fe425085000)]
    0x000000004216a800 JavaThread "CompilerThread1" daemon [_thread_blocked, id=5819, stack(0x00007fe425085000,0x00007fe425186000)]
    0x0000000042167800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5818, stack(0x00007fe425186000,0x00007fe425287000)]
    0x0000000042165800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5817, stack(0x00007fe425287000,0x00007fe425388000)]
    0x0000000042146800 JavaThread "Finalizer" daemon [_thread_blocked, id=5816, stack(0x00007fe425579000,0x00007fe42567a000)]
    0x000000004213f000 JavaThread "Reference Handler" daemon [_thread_blocked, id=5815, stack(0x00007fe42567a000,0x00007fe42577b000)]
    0x00000000420b6000 JavaThread "main" [_thread_in_native, id=5809, stack(0x00007fe42a01b000,0x00007fe42a11c000)]
    Other Threads:
    0x000000004213a800 VMThread [stack: 0x00007fe42577b000,0x00007fe42587c000] [id=5814]
    0x00007fe420004000 WatcherThread [stack: 0x00007fe424e83000,0x00007fe424f84000] [id=5821]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 70208K, used 43808K [0x00000000f8000000, 0x00000000ff160000, 0x0000000100000000)
    eden space 66560K, 60% used [0x00000000f8000000,0x00000000fa738210,0x00000000fc100000)
    from space 3648K, 100% used [0x00000000fde80000,0x00000000fe210000,0x00000000fe210000)
    to space 9920K, 0% used [0x00000000fe7b0000,0x00000000fe7b0000,0x00000000ff160000)
    PSOldGen total 44288K, used 37157K [0x00000000e8000000, 0x00000000eab40000, 0x00000000f8000000)
    object space 44288K, 83% used [0x00000000e8000000,0x00000000ea449730,0x00000000eab40000)
    PSPermGen total 147776K, used 78527K [0x00000000d8000000, 0x00000000e1050000, 0x00000000e8000000)
    object space 147776K, 53% used [0x00000000d8000000,0x00000000dccafd20,0x00000000e1050000)
    Dynamic libraries:
    40000000-40009000 r-xp 00000000 08:02 1447429 /opt/java/jre/bin/java
    40108000-4010a000 rwxp 00008000 08:02 1447429 /opt/java/jre/bin/java
    420ae000-4518b000 rwxp 00000000 00:00 0 [heap]
    d8000000-e1050000 rwxp 00000000 00:00 0
    e1050000-e8000000 rwxp 00000000 00:00 0
    e8000000-eab40000 rwxp 00000000 00:00 0
    eab40000-f8000000 rwxp 00000000 00:00 0
    f8000000-ff160000 rwxp 00000000 00:00 0
    ff160000-ff980000 ---p 00000000 00:00 0
    ff980000-100000000 rwxp 00000000 00:00 0
    7fe401073000-7fe401076000 ---p 00000000 00:00 0
    7fe401076000-7fe401174000 rwxp 00000000 00:00 0
    7fe401174000-7fe401177000 ---p 00000000 00:00 0
    7fe401177000-7fe401275000 rwxp 00000000 00:00 0
    7fe401275000-7fe401278000 ---p 00000000 00:00 0
    7fe401278000-7fe401376000 rwxp 00000000 00:00 0
    7fe401376000-7fe401379000 ---p 00000000 00:00 0
    7fe401379000-7fe401477000 rwxp 00000000 00:00 0
    7fe401477000-7fe40147a000 ---p 00000000 00:00 0
    7fe40147a000-7fe401578000 rwxp 00000000 00:00 0
    7fe401578000-7fe4015b0000 r-xp 00000000 08:02 151464 /usr/lib/libcroco-0.6.so.3.0.1
    7fe4015b0000-7fe4017b0000 ---p 00038000 08:02 151464 /usr/lib/libcroco-0.6.so.3.0.1
    7fe4017b0000-7fe4017b4000 rwxp 00038000 08:02 151464 /usr/lib/libcroco-0.6.so.3.0.1
    7fe4017b4000-7fe4017e8000 r-xp 00000000 08:02 151469 /usr/lib/librsvg-2.so.2.32.1
    7fe4017e8000-7fe4019e8000 ---p 00034000 08:02 151469 /usr/lib/librsvg-2.so.2.32.1
    7fe4019e8000-7fe4019ea000 rwxp 00034000 08:02 151469 /usr/lib/librsvg-2.so.2.32.1
    7fe4019ea000-7fe404c87000 r-xp 00000000 08:02 524770 /usr/share/icons/gnome/icon-theme.cache
    7fe404c87000-7fe404d22000 r-xp 00000000 08:02 667556 /usr/share/fonts/TTF/DejaVuSans-Bold.ttf
    7fe404d22000-7fe404dc9000 r-xp 00000000 08:02 667554 /usr/share/fonts/TTF/DejaVuSans.ttf
    7fe404dc9000-7fe404dca000 ---p 00000000 00:00 0
    7fe404dca000-7fe4055ca000 rwxp 00000000 00:00 0
    7fe4055ca000-7fe4055cb000 ---p 00000000 00:00 0
    7fe4055cb000-7fe405dcb000 rwxp 00000000 00:00 0
    7fe405dcb000-7fe405dcc000 ---p 00000000 00:00 0
    7fe405dcc000-7fe4065cc000 rwxp 00000000 00:00 0
    7fe4066a9000-7fe4066ab000 r-xp 00000000 08:02 151473 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
    7fe4066ab000-7fe4068aa000 ---p 00002000 08:02 151473 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
    7fe4068aa000-7fe4068ab000 rwxp 00001000 08:02 151473 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
    7fe4068ab000-7fe4068bf000 r-xp 00000000 08:02 285767 /usr/lib/gio/modules/libgioremote-volume-monitor.so
    7fe4068bf000-7fe406abe000 ---p 00014000 08:02 285767 /usr/lib/gio/modules/libgioremote-volume-monitor.so
    7fe406abe000-7fe406abf000 rwxp 00013000 08:02 285767 /usr/lib/gio/modules/libgioremote-volume-monitor.so
    7fe406abf000-7fe406ac2000 ---p 00000000 00:00 0
    7fe406ac2000-7fe406bc0000 rwxp 00000000 00:00 0
    7fe406bc0000-7fe406bcd000 r-xp 00000000 08:02 133451 /lib/libudev.so.0.10.0
    7fe406bcd000-7fe406dcc000 ---p 0000d000 08:02 133451 /lib/libudev.so.0.10.0
    7fe406dcc000-7fe406dcd000 rwxp 0000c000 08:02 133451 /lib/libudev.so.0.10.0
    7fe406dcd000-7fe406dd2000 r-xp 00000000 08:02 162114 /usr/lib/libfam.so.0.0.0
    7fe406dd2000-7fe406fd2000 ---p 00005000 08:02 162114 /usr/lib/libfam.so.0.0.0
    7fe406fd2000-7fe406fd3000 rwxp 00005000 08:02 162114 /usr/lib/libfam.so.0.0.0
    7fe406fd3000-7fe406fda000 r-xp 00000000 08:02 137850 /lib/libacl.so.1.1.0
    7fe406fda000-7fe4071d9000 ---p 00007000 08:02 137850 /lib/libacl.so.1.1.0
    7fe4071d9000-7fe4071da000 rwxp 00006000 08:02 137850 /lib/libacl.so.1.1.0
    7fe4071da000-7fe4071de000 r-xp 00000000 08:02 134244 /lib/libattr.so.1.1.0
    7fe4071de000-7fe4073dd000 ---p 00004000 08:02 134244 /lib/libattr.so.1.1.0
    7fe4073dd000-7fe4073de000 rwxp 00003000 08:02 134244 /lib/libattr.so.1.1.0
    7fe4073de000-7fe4073ec000 r-xp 00000000 08:02 165593 /usr/lib/gnome-vfs-2.0/modules/libfile.so
    7fe4073ec000-7fe4075ec000 ---p 0000e000 08:02 165593 /usr/lib/gnome-vfs-2.0/modules/libfile.so
    7fe4075ec000-7fe4075ed000 rwxp 0000e000 08:02 165593 /usr/lib/gnome-vfs-2.0/modules/libfile.so
    7fe4075ed000-7fe4075ee000 ---p 00000000 00:00 0
    7fe4075ee000-7fe407dee000 rwxp 00000000 00:00 0
    7fe407e37000-7fe407e4e000 r-xp 00000000 08:02 162111 /usr/lib/libgvfscommon.so.0.0.0
    7fe407e4e000-7fe40804e000 ---p 00017000 08:02 162111 /usr/lib/libgvfscommon.so.0.0.0
    7fe40804e000-7fe40804f000 rwxp 00017000 08:02 162111 /usr/lib/libgvfscommon.so.0.0.0
    7fe40804f000-7fe4085ef000 r-xp 00000000 08:02 175515 /usr/share/icons/hicolor/icon-theme.cache
    7fe4085ef000-7fe408642000 r-xp 00000000 08:02 667568 /usr/share/fonts/TTF/DejaVuSerif.ttf
    7fe40865d000-7fe408677000 r-xs 00000000 08:02 144627 /usr/share/mime/mime.cache
    7fe408677000-7fe4086a1000 r-xp 00000000 08:02 285769 /usr/lib/gio/modules/libgvfsdbus.so
    7fe4086a1000-7fe4088a0000 ---p 0002a000 08:02 285769 /usr/lib/gio/modules/libgvfsdbus.so
    7fe4088a0000-7fe4088a1000 rwxp 00029000 08:02 285769 /usr/lib/gio/modules/libgvfsdbus.so
    7fe4088a1000-7fe4088a2000 rwxp 00000000 00:00 0
    7fe4088a2000-7fe40893d000 r-xp 00000000 08:02 667556 /usr/share/fonts/TTF/DejaVuSans-Bold.ttf
    7fe40893d000-7fe40893f000 r-xp 00000000 08:02 152646 /usr/lib/libXss.so.1.0.0
    7fe40893f000-7fe408b3f000 ---p 00002000 08:02 152646 /usr/lib/libXss.so.1.0.0
    7fe408b3f000-7fe408b40000 rwxp 00002000 08:02 152646 /usr/lib/libXss.so.1.0.0
    7fe408b40000-7fe408b43000 ---p 00000000 00:00 0
    7fe408b43000-7fe408c41000 rwxp 00000000 00:00 0
    7fe408c41000-7fe408c44000 ---p 00000000 00:00 0
    7fe408c44000-7fe408d42000 rwxp 00000000 00:00 0
    7fe408d42000-7fe408d45000 ---p 00000000 00:00 0
    7fe408d45000-7fe408e43000 rwxp 00000000 00:00 0
    7fe408e43000-7fe408ea3000 rwxs 00000000 00:04 2621472 /SYSV00000000 (deleted)
    7fe408f7e000-7fe408f81000 ---p 00000000 00:00 0
    7fe408f81000-7fe40907f000 rwxp 00000000 00:00 0
    7fe40907f000-7fe4090b0000 r-xs 00240000 08:05 4197224 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.debug.ui_3.6.1.v20100901_r361.jar
    7fe4090b0000-7fe4090e9000 r-xp 00000000 08:02 666672 /usr/share/fonts/TTF/DejaVuSansMono-Oblique.ttf
    7fe4090e9000-7fe409134000 r-xp 00000000 08:02 666670 /usr/share/fonts/TTF/DejaVuSansMono-Bold.ttf
    7fe409134000-7fe409183000 r-xp 00000000 08:02 666664 /usr/share/fonts/TTF/DejaVuSansMono.ttf
    7fe409183000-7fe409210000 r-xp 00000000 08:02 667547 /usr/share/fonts/TTF/DejaVuSans-BoldOblique.ttf
    7fe409210000-7fe409213000 ---p 00000000 00:00 0
    7fe409213000-7fe409311000 rwxp 00000000 00:00 0
    7fe409311000-7fe40939e000 r-xp 00000000 08:02 666665 /usr/share/fonts/TTF/DejaVuSans-Oblique.ttf
    7fe40939e000-7fe4093a2000 r-xp 00000000 08:05 4327510 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/25/1/.cp/os/linux/x86_64/libspawner.so
    7fe4093a2000-7fe4095a1000 ---p 00004000 08:05 4327510 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/25/1/.cp/os/linux/x86_64/libspawner.so
    7fe4095a1000-7fe4095a2000 rwxp 00003000 08:05 4327510 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/25/1/.cp/os/linux/x86_64/libspawner.so
    7fe4095a2000-7fe4095a4000 r-xp 00000000 08:05 4327430 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/63/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
    7fe4095a4000-7fe4096a3000 ---p 00002000 08:05 4327430 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/63/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
    7fe4096a3000-7fe4096a4000 rwxp 00001000 08:05 4327430 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/63/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
    7fe4096a4000-7fe4098a2000 r-xp 00000000 08:02 657918 /usr/lib/xulrunner-1.9.2/chrome/toolkit.jar
    7fe4098a2000-7fe4098ae000 r-xp 00000000 08:02 657953 /usr/lib/xulrunner-1.9.2/components/libnkgnomevfs.so
    7fe4098ae000-7fe409aae000 ---p 0000c000 08:02 657953 /usr/lib/xulrunner-1.9.2/components/libnkgnomevfs.so
    7fe409aae000-7fe409aaf000 rwxp 0000c000 08:02 657953 /usr/lib/xulrunner-1.9.2/components/libnkgnomevfs.so
    7fe409aaf000-7fe409ab1000 r-xp 00000000 08:02 174474 /usr/lib/libssp.so.0.0.0
    7fe409ab1000-7fe409cb0000 ---p 00002000 08:02 174474 /usr/lib/libssp.so.0.0.0
    7fe409cb0000-7fe409cb1000 rwxp 00001000 08:02 174474 /usr/lib/libssp.so.0.0.0
    7fe409cb1000-7fe409cb3000 r-xp 00000000 08:02 130874 /lib/libutil-2.13.so
    7fe409cb3000-7fe409eb2000 ---p 00002000 08:02 130874 /lib/libutil-2.13.so
    7fe409eb2000-7fe409eb3000 r-xp 00001000 08:02 130874 /lib/libutil-2.13.so
    7fe409eb3000-7fe409eb4000 rwxp 00002000 08:02 130874 /lib/libutil-2.13.so
    7fe409eb4000-7fe409ec4000 r-xp 00000000 08:02 144890 /usr/lib/libavahi-client.so.3.2.8
    7fe409ec4000-7fe40a0c3000 ---p 00010000 08:02 144890 /usr/lib/libavahi-client.so.3.2.8
    7fe40a0c3000-7fe40a0c4000 rwxp 0000f000 08:02 144890 /usr/lib/libavahi-client.so.3.2.8
    7fe40a0c4000-7fe40a0d0000 r-xp 00000000 08:02 144894 /usr/lib/libavahi-common.so.3.5.2
    7fe40a0d0000-7fe40a2cf000 ---p 0000c000 08:02 144894 /usr/lib/libavahi-common.so.3.5.2
    7fe40a2cf000-7fe40a2d0000 rwxp 0000b000 08:02 144894 /usr/lib/libavahi-common.so.3.5.2
    7fe40a2d0000-7fe40a2d3000 r-xp 00000000 08:02 144902 /usr/lib/libavahi-glib.so.1.0.2
    7fe40a2d3000-7fe40a4d2000 ---p 00003000 08:02 144902 /usr/lib/libavahi-glib.so.1.0.2
    7fe40a4d2000-7fe40a4d3000 rwxp 00002000 08:02 144902 /usr/lib/libavahi-glib.so.1.0.2
    7fe40a4d3000-7fe40a4d6000 r-xp 00000000 08:02 133518 /lib/libgpg-error.so.0.7.0
    7fe40a4d6000-7fe40a6d5000 ---p 00003000 08:02 133518 /lib/libgpg-error.so.0.7.0
    7fe40a6d5000-7fe40a6d6000 rwxp 00002000 08:02 133518 /lib/libgpg-error.so.0.7.0
    7fe40a6d6000-7fe40a74c000 r-xp 00000000 08:02 133536 /lib/libgcrypt.so.11.6.0
    7fe40a74c000-7fe40a94b000 ---p 00076000 08:02 133536 /lib/libgcrypt.so.11.6.0
    7fe40a94b000-7fe40a94f000 rwxp 00075000 08:02 133536 /lib/libgcrypt.so.11.6.0
    7fe40a94f000-7fe40a95f000 r-xp 00000000 08:02 143423 /usr/lib/libtasn1.so.3.1.10
    7fe40a95f000-7fe40ab5e000 ---p 00010000 08:02 143423 /usr/lib/libtasn1.so.3.1.10
    7fe40ab5e000-7fe40ab5f000 rwxp 0000f000 08:02 143423 /usr/lib/libtasn1.so.3.1.10
    7fe40ab5f000-7fe40ac02000 r-xp 00000000 08:02 143492 /usr/lib/libgnutls.so.26.16.13
    7fe40ac02000-7fe40ae01000 ---p 000a3000 08:02 143492 /usr/lib/libgnutls.so.26.16.13
    7fe40ae01000-7fe40ae09000 rwxp 000a2000 08:02 143492 /usr/lib/libgnutls.so.26.16.13
    7fe40ae09000-7fe40af52000 r-xp 00000000 08:02 132867 /usr/lib/libxml2.so.2.7.8
    7fe40af52000-7fe40b151000 ---p 00149000 08:02 132867 /usr/lib/libxml2.so.2.7.8
    7fe40b151000-7fe40b15b000 rwxp 00148000 08:02 132867 /usr/lib/libxml2.so.2.7.8
    7fe40b15b000-7fe40b15c000 rwxp 00000000 00:00 0
    7fe40b15c000-7fe40b164000 r-xp 00000000 08:02 147725 /usr/lib/libnotify.so.1.3.0
    7fe40b164000-7fe40b364000 ---p 00008000 08:02 147725 /usr/lib/libnotify.so.1.3.0
    7fe40b364000-7fe40b365000 rwxp 00008000 08:02 147725 /usr/lib/libnotify.so.1.3.0
    7fe40b365000-7fe40b3cd000 r-xp 00000000 08:02 165579 /usr/lib/libgnomevfs-2.so.0.2400.4
    7fe40b3cd000-7fe40b5cc000 ---p 00068000 08:02 165579 /usr/lib/libgnomevfs-2.so.0.2400.4
    7fe40b5cc000-7fe40b5d1000 rwxp 00067000 08:02 165579 /usr/lib/libgnomevfs-2.so.0.2400.4
    7fe40b5d1000-7fe40b5de000 r-xp 00000000 08:02 657988 /usr/lib/xulrunner-1.9.2/components/libmozgnome.so
    7fe40b5de000-7fe40b7dd000 ---p 0000d000 08:02 657988 /usr/lib/xulrunner-1.9.2/components/libmozgnome.so
    7fe40b7dd000-7fe40b7df000 rwxp 0000c000 08:02 657988 /usr/lib/xulrunner-1.9.2/components/libmozgnome.so
    7fe40b7df000-7fe40b7ed000 r-xp 00000000 08:02 657973 /usr/lib/xulrunner-1.9.2/components/libimgicon.so
    7fe40b7ed000-7fe40b9ec000 ---p 0000e000 08:02 657973 /usr/lib/xulrunner-1.9.2/components/libimgicon.so
    7fe40b9ec000-7fe40b9ee000 rwxp 0000d000 08:02 657973 /usr/lib/xulrunner-1.9.2/components/libimgicon.so
    7fe40b9ee000-7fe40b9ef000 ---p 00000000 00:00 0
    7fe40b9ef000-7fe40c1ef000 rwxp 00000000 00:00 0
    7fe40c1ef000-7fe40c24d000 r-xp 00000000 08:02 147811 /usr/lib/libORBit-2.so.0.1.0
    7fe40c24d000-7fe40c44c000 ---p 0005e000 08:02 147811 /usr/lib/libORBit-2.so.0.1.0
    7fe40c44c000-7fe40c45e000 rwxp 0005d000 08:02 147811 /usr/lib/libORBit-2.so.0.1.0
    7fe40c45e000-7fe40c45f000 rwxp 00000000 00:00 0
    7fe40c45f000-7fe40c49a000 r-xp 00000000 08:02 147994 /usr/lib/libgconf-2.so.4.1.5
    7fe40c49a000-7fe40c699000 ---p 0003b000 08:02 147994 /usr/lib/libgconf-2.so.4.1.5
    7fe40c699000-7fe40c69e000 rwxp 0003a000 08:02 147994 /usr/lib/libgconf-2.so.4.1.5
    7fe40c69e000-7fe40c69f000 ---p 00000000 00:00 0
    7fe40c69f000-7fe40ce9f000 rwxp 00000000 00:00 0
    7fe40ce9f000-7fe40cec4000 r-xp 00000000 08:02 146823 /usr/lib/libdbus-glib-1.so.2.1.0
    7fe40cec4000-7fe40d0c3000 ---p 00025000 08:02 146823 /usr/lib/libdbus-glib-1.so.2.1.0
    7fe40d0c3000-7fe40d0c5000 rwxp 00024000 08:02 146823 /usr/lib/libdbus-glib-1.so.2.1.0
    7fe40d0c5000-7fe40d0ce000 r-xp 00000000 08:02 657992 /usr/lib/xulrunner-1.9.2/components/libdbusservice.so
    7fe40d0ce000-7fe40d2ce000 ---p 00009000 08:02 657992 /usr/lib/xulrunner-1.9.2/components/libdbusservice.so
    7fe40d2ce000-7fe40d2cf000 rwxp 00009000 08:02 657992 /usr/lib/xulrunner-1.9.2/components/libdbusservice.so
    7fe40d2cf000-7fe40d2d0000 ---p 00000000 00:00 0
    7fe40d2d0000-7fe40dad0000 rwxp 00000000 00:00 0
    7fe40dad0000-7fe40dad1000 ---p 00000000 00:00 0
    7fe40dad1000-7fe40e2d1000 rwxp 00000000 00:00 0
    7fe40e2d1000-7fe40e2d2000 ---p 00000000 00:00 0
    7fe40e2d2000-7fe40ead2000 rwxp 00000000 00:00 0
    7fe40ead2000-7fe40ead3000 ---p 00000000 00:00 0
    7fe40ead3000-7fe40f2d3000 rwxp 00000000 00:00 0
    7fe40f2d3000-7fe40f2d6000 r-xp 00000000 08:02 1448212 /usr/lib/gconv/UTF-16.so
    7fe40f2d6000-7fe40f4d5000 ---p 00003000 08:02 1448212 /usr/lib/gconv/UTF-16.so
    7fe40f4d5000-7fe40f4d6000 r-xp 00002000 08:02 1448212 /usr/lib/gconv/UTF-16.so
    7fe40f4d6000-7fe40f4d7000 rwxp 00003000 08:02 1448212 /usr/lib/gconv/UTF-16.so
    7fe40f4d7000-7fe40f4f5000 r-xp 00000000 08:05 4327333 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-xulrunner-gtk-3655.so
    7fe40f4f5000-7fe40f5f4000 ---p 0001e000 08:05 4327333 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-xulrunner-gtk-3655.so
    7fe40f5f4000-7fe40f5f6000 rwxp 0001d000 08:05 4327333 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-xulrunner-gtk-3655.so
    7fe40f5f6000-7fe40f5fa000 r-xp 00000000 08:02 525277 /usr/lib/xulrunner-1.9.2/libxpcom.so
    7fe40f5fa000-7fe40f7f9000 ---p 00004000 08:02 525277 /usr/lib/xulrunner-1.9.2/libxpcom.so
    7fe40f7f9000-7fe40f7fa000 rwxp 00003000 08:02 525277 /usr/lib/xulrunner-1.9.2/libxpcom.so
    7fe40f7fa000-7fe40f7fe000 r-xp 00000000 08:02 132996 /lib/libuuid.so.1.3.0
    7fe40f7fe000-7fe40f9fd000 ---p 00004000 08:02 132996 /lib/libuuid.so.1.3.0
    7fe40f9fd000-7fe40f9fe000 rwxp 00003000 08:02 132996 /lib/libuuid.so.1.3.0
    7fe40f9fe000-7fe40fa01000 r-xp 00000000 08:02 158851 /usr/lib/libxcb-atom.so.1.0.0
    7fe40fa01000-7fe40fc01000 ---p 00003000 08:02 158851 /usr/lib/libxcb-atom.so.1.0.0
    7fe40fc01000-7fe40fc02000 rwxp 00003000 08:02 158851 /usr/lib/libxcb-atom.so.1.0.0
    7fe40fc02000-7fe40fc05000 r-xp 00000000 08:02 158857 /usr/lib/libxcb-event.so.1.0.0
    7fe40fc05000-7fe40fe05000 ---p 00003000 08:02 158857 /usr/lib/libxcb-event.so.1.0.0
    7fe40fe05000-7fe40fe06000 rwxp 00003000 08:02 158857 /usr/lib/libxcb-event.so.1.0.0
    7fe40fe06000-7fe40fe08000 r-xp 00000000 08:02 158854 /usr/lib/libxcb-aux.so.0.0.0
    7fe40fe08000-7fe410008000 ---p 00002000 08:02 158854 /usr/lib/libxcb-aux.so.0.0.0
    7fe410008000-7fe410009000 rwxp 00002000 08:02 158854 /usr/lib/libxcb-aux.so.0.0.0
    7fe410009000-7fe410020000 r-xp 00000000 08:02 158094 /usr/lib/libICE.so.6.3.0
    7fe410020000-7fe41021f000 ---p 00017000 08:02 158094 /usr/lib/libICE.so.6.3.0
    7fe41021f000-7fe410220000 rwxp 00016000 08:02 158094 /usr/lib/libICE.so.6.3.0
    7fe410220000-7fe410224000 rwxp 00000000 00:00 0
    7fe410224000-7fe41022b000 r-xp 00000000 08:02 158102 /usr/lib/libSM.so.6.0.1
    7fe41022b000-7fe41042a000 ---p 00007000 08:02 158102 /usr/lib/libSM.so.6.0.1
    7fe41042a000-7fe41042b000 rwxp 00006000 08:02 158102 /usr/lib/libSM.so.6.0.1
    7fe41042b000-7fe41050c000 r-xp 00000000 08:02 156735 /usr/lib/libasound.so.2.0.0
    7fe41050c000-7fe41070b000 ---p 000e1000 08:02 156735 /usr/lib/libasound.so.2.0.0
    7fe41070b000-7fe410713000 rwxp 000e0000 08:02 156735 /usr/lib/libasound.so.2.0.0
    7fe410713000-7fe41071c000 r-xp 00000000 08:02 150568 /usr/lib/libstartup-notification-1.so.0.0.0
    7fe41071c000-7fe41091b000 ---p 00009000 08:02 150568 /usr/lib/libstartup-notification-1.so.0.0.0
    7fe41091b000-7fe41091c000 rwxp 00008000 08:02 150568 /usr/lib/libstartup-notification-1.so.0.0.0
    7fe41091c000-7fe41097b000 r-xp 00000000 08:02 158105 /usr/lib/libXt.so.6.0.0
    7fe41097b000-7fe410b7b000 ---p 0005f000 08:02 158105 /usr/lib/libXt.so.6.0.0
    7fe410b7b000-7fe410b81000 rwxp 0005f000 08:02 158105 /usr/lib/libXt.so.6.0.0
    7fe410b81000-7fe410bc4000 r-xp 00000000 08:02 133569 /usr/lib/libdbus-1.so.3.5.3
    7fe410bc4000-7fe410dc4000 ---p 00043000 08:02 133569 /usr/lib/libdbus-1.so.3.5.3
    7fe410dc4000-7fe410dc5000 r-xp 00043000 08:02 133569 /usr/lib/libdbus-1.so.3.5.3
    7fe410dc5000-7fe410dc6000 rwxp 00044000 08:02 133569 /usr/lib/libdbus-1.so.3.5.3
    7fe410dc6000-7fe410dca000 r-xp 00000000 08:02 148822 /usr/lib/libplc4.so
    7fe410dca000-7fe410fc9000 ---p 00004000 08:02 148822 /usr/lib/libplc4.so
    7fe410fc9000-7fe410fca000 rwxp 00003000 08:02 148822 /usr/lib/libplc4.so
    7fe410fca000-7fe410fcd000 r-xp 00000000 08:02 148821 /usr/lib/libplds4.so
    7fe410fcd000-7fe4111cc000 ---p 00003000 08:02 148821 /usr/lib/libplds4.so
    7fe4111cc000-7fe4111cd000 rwxp 00002000 08:02 148821 /usr/lib/libplds4.so
    7fe4111cd000-7fe4111e6000 r-xp 00000000 08:02 155908 /usr/lib/libevent-1.4.so.2.2.0
    7fe4111e6000-7fe4113e6000 ---p 00019000 08:02 155908 /usr/lib/libevent-1.4.so.2.2.0
    7fe4113e6000-7fe4113e7000 rwxp 00019000 08:02 155908 /usr/lib/libevent-1.4.so.2.2.0
    7fe4113e7000-7fe4113e8000 rwxp 00000000 00:00 0
    7fe4113e8000-7fe411438000 r-xp 00000000 08:02 146968 /usr/lib/libhunspell-1.2.so.0.0.0
    7fe411438000-7fe411637000 ---p 00050000 08:02 146968 /usr/lib/libhunspell-1.2.so.0.0.0
    7fe411637000-7fe41163c000 rwxp 0004f000 08:02 146968 /usr/lib/libhunspell-1.2.so.0.0.0
    7fe41163c000-7fe411656000 r-xp 00000000 08:02 148987 /usr/lib/libnssutil3.so
    7fe411656000-7fe411855000 ---p 0001a000 08:02 148987 /usr/lib/libnssutil3.so
    7fe411855000-7fe41185b000 rwxp 00019000 08:02 148987 /usr/lib/libnssutil3.so
    7fe41185b000-7fe411990000 r-xp 00000000 08:02 148983 /usr/lib/libnss3.so
    7fe411990000-7fe411b90000 ---p 00135000 08:02 148983 /usr/lib/libnss3.so
    7fe411b90000-7fe411b97000 rwxp 00135000 08:02 148983 /usr/lib/libnss3.so
    7fe411b97000-7fe411b98000 rwxp 00000000 00:00 0
    7fe411b98000-7fe411bc1000 r-xp 00000000 08:02 148990 /usr/lib/libsmime3.so
    7fe411bc1000-7fe411dc0000 ---p 00029000 08:02 148990 /usr/lib/libsmime3.so
    7fe411dc0000-7fe411dc4000 rwxp 00028000 08:02 148990 /usr/lib/libsmime3.so
    7fe411dc4000-7fe411df6000 r-xp 00000000 08:02 148980 /usr/lib/libssl3.so
    7fe411df6000-7fe411ff6000 ---p 00032000 08:02 148980 /usr/lib/libssl3.so
    7fe411ff6000-7fe411ff8000 rwxp 00032000 08:02 148980 /usr/lib/libssl3.so
    7fe411ff8000-7fe411ff9000 rwxp 00000000 00:00 0
    7fe411ff9000-7fe412032000 r-xp 00000000 08:02 145047 /usr/lib/libjpeg.so.8.3.0
    7fe412032000-7fe412232000 ---p 00039000 08:02 145047 /usr/lib/libjpeg.so.8.3.0
    7fe412232000-7fe412233000 rwxp 00039000 08:02 145047 /usr/lib/libjpeg.so.8.3.0
    7fe412233000-7fe4122ca000 r-xp 00000000 08:02 141268 /usr/lib/libsqlite3.so.0.8.6
    7fe4122ca000-7fe4124ca000 ---p 00097000 08:02 141268 /usr/lib/libsqlite3.so.0.8.6
    7fe4124ca000-7fe4124ce000 rwxp 00097000 08:02 141268 /usr/lib/libsqlite3.so.0.8.6
    7fe4124ce000-7fe413898000 r-xp 00000000 08:02 525285 /usr/lib/xulrunner-1.9.2/libxul.so
    7fe413898000-7fe413a98000 ---p 013ca000 08:02 525285 /usr/lib/xulrunner-1.9.2/libxul.so
    7fe413a98000-7fe413c6b000 rwxp 013ca000 08:02 525285 /usr/lib/xulrunner-1.9.2/libxul.so
    7fe413c6b000-7fe413c86000 rwxp 00000000 00:00 0
    7fe413c86000-7fe413df3000 r-xp 00000000 08:02 525287 /usr/lib/xulrunner-1.9.2/libmozjs.so
    7fe413df3000-7fe413ff3000 ---p 0016d000 08:02 525287 /usr/lib/xulrunner-1.9.2/libmozjs.so
    7fe413ff3000-7fe414000000 rwxp 0016d000 08:02 525287 /usr/lib/xulrunner-1.9.2/libmozjs.so
    7fe414000000-7fe416d6c000 rwxp 00000000 00:00 0
    7fe416d6c000-7fe418000000 ---p 00000000 00:00 0
    7fe41800a000-7fe41802e000 r-xp 00000000 08:02 279857 /usr/share/icons/exotic/icon-theme.cache
    7fe41802e000-7fe41804a000 r-xs 00141000 08:05 4197241 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.team.ui_3.5.101.R36x_v20100825-0800.jar
    7fe41804a000-7fe41804c000 r-xs 00001000 08:02 1439080 /opt/java/jre/lib/ext/dnsns.jar
    7fe41804c000-7fe418053000 r-xs 00094000 08:02 1439030 /opt/java/jre/lib/jsse.jar
    7fe418053000-7fe4180b4000 r-xp 00000000 08:02 657915 /usr/lib/xulrunner-1.9.2/chrome/classic.jar
    7fe4180b4000-7fe418107000 r-xp 00000000 08:02 657911 /usr/lib/xulrunner-1.9.2/chrome/en-US.jar
    7fe418107000-7fe41813f000 r-xp 00000000 08:02 148823 /usr/lib/libnspr4.so
    7fe41813f000-7fe41833e000 ---p 00038000 08:02 148823 /usr/lib/libnspr4.so
    7fe41833e000-7fe418341000 rwxp 00037000 08:02 148823 /usr/lib/libnspr4.so
    7fe418341000-7fe418343000 rwxp 00000000 00:00 0
    7fe418343000-7fe418358000 r-xp 00000000 08:02 174473 /usr/lib/libgcc_s.so.1
    7fe418358000-7fe418558000 ---p 00015000 08:02 174473 /usr/lib/libgcc_s.so.1
    7fe418558000-7fe418559000 rwxp 00015000 08:02 174473 /usr/lib/libgcc_s.so.1
    7fe418559000-7fe418645000 r-xp 00000000 08:02 142183 /usr/lib/libstdc++.so.6.0.14
    7fe418645000-7fe418844000 ---p 000ec000 08:02 142183 /usr/lib/libstdc++.so.6.0.14
    7fe418844000-7fe41884c000 r-xp 000eb000 08:02 142183 /usr/lib/libstdc++.so.6.0.14
    7fe41884c000-7fe41884e000 rwxp 000f3000 08:02 142183 /usr/lib/libstdc++.so.6.0.14
    7fe41884e000-7fe418863000 rwxp 00000000 00:00 0
    7fe418863000-7fe41886a000 r-xp 00000000 08:05 4327332 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-xpcominit-gtk-3655.so
    7fe41886a000-7fe41896a000 ---p 00007000 08:05 4327332 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-xpcominit-gtk-3655.so
    7fe41896a000-7fe41896c000 rwxp 00007000 08:05 4327332 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-xpcominit-gtk-3655.so
    7fe41896c000-7fe41896d000 r-xp 00000000 08:02 145610 /usr/lib/gtk-2.0/2.10.0/immodules/im-cedilla.so
    7fe41896d000-7fe418b6d000 ---p 00001000 08:02 145610 /usr/lib/gtk-2.0/2.10.0/immodules/im-cedilla.so
    7fe418b6d000-7fe418b6e000 rwxp 00001000 08:02 145610 /usr/lib/gtk-2.0/2.10.0/immodules/im-cedilla.so
    7fe418b6e000-7fe418b71000 ---p 00000000 00:00 0
    7fe418b71000-7fe418c6f000 rwxp 00000000 00:00 0
    7fe418c7b000-7fe418c7e000 ---p 00000000 00:00 0
    7fe418c7e000-7fe418d7c000 rwxp 00000000 00:00 0
    7fe418d7c000-7fe418d96000 r-xs 00000000 08:02 144627 /usr/share/mime/mime.cache
    7fe418d96000-7fe418dab000 r-xp 00000000 08:02 133275 /usr/share/locale/fr/LC_MESSAGES/glib20.mo
    7fe418db5000-7fe418dc1000 r-xs 0006c000 08:05 4197925 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.debug.core_7.0.0.201009141542.jar
    7fe418dc1000-7fe418df8000 r-xp 00000000 08:02 667551 /usr/share/fonts/TTF/DejaVuSansMono-BoldOblique.ttf
    7fe418df8000-7fe418e00000 r-xs 00115000 08:02 1439043 /opt/java/jre/lib/resources.jar
    7fe418e05000-7fe418e10000 r-xs 0007d000 08:05 4197906 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.editors_3.6.1.r361_v20100825-0800.jar
    7fe418e10000-7fe418e58000 r-xs 003db000 08:05 4197978 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.core_5.2.1.201009141542.jar
    7fe418e5e000-7fe418e6b000 r-xs 000a6000 08:05 4197799 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.compare_3.5.100.I20100526-0800.jar
    7fe418e6b000-7fe418ebc000 r-xs 00467000 08:05 4197980 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.ui_5.2.1.201009141542.jar
    7fe418ebc000-7fe418ec8000 r-xp 00000000 08:05 4325759 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-cairo-gtk-3655.so
    7fe418ec8000-7fe418fc8000 ---p 0000c000 08:05 4325759 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-cairo-gtk-3655.so
    7fe418fc8000-7fe418fc9000 rwxp 0000c000 08:05 4325759 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-cairo-gtk-3655.so
    7fe418fc9000-7fe418fcf000 r-xp 00000000 08:02 145448 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
    7fe418fcf000-7fe4191ce000 ---p 00006000 08:02 145448 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
    7fe4191ce000-7fe4191cf000 rwxp 00005000 08:02 145448 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
    7fe4191cf000-7fe4191d2000 ---p 00000000 00:00 0
    7fe4191d2000-7fe4192d0000 rwxp 00000000 00:00 0
    7fe4192d0000-7fe4192db000 r-xp 00000000 08:05 4325530 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-atk-gtk-3655.so
    7fe4192db000-7fe4193da000 ---p 0000b000 08:05 4325530 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-atk-gtk-3655.so
    7fe4193da000-7fe4193db000 rwxp 0000a000 08:05 4325530 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-atk-gtk-3655.so
    7fe4193db000-7fe4193fc000 r-xs 00607000 08:05 4197971 /home/hyviquel/Applications/eclipse_c/plugins/com.ibm.icu_4.2.1.v20100412.jar
    7fe4193fc000-7fe4194a3000 r-xp 00000000 08:02 667554 /usr/share/fonts/TTF/DejaVuSans.ttf
    7fe4194a3000-7fe419500000 r-xs 00000000 08:02 396909 /var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-le64.cache-3
    7fe419500000-7fe41955d000 r-xs 00000000 08:02 396907 /var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le64.cache-3
    7fe41955d000-7fe419562000 r-xp 00000000 08:02 158751 /usr/lib/libXtst.so.6.1.0
    7fe419562000-7fe419762000 ---p 00005000 08:02 158751 /usr/lib/libXtst.so.6.1.0
    7fe419762000-7fe419763000 rwxp 00005000 08:02 158751 /usr/lib/libXtst.so.6.1.0
    7fe419767000-7fe419772000 r-xs 000b1000 08:05 4197211 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.resources_3.6.0.R36x_v20100825-0600.jar
    7fe419772000-7fe419788000 r-xs 00000000 08:02 393055 /var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le64.cache-3
    7fe419788000-7fe4197fa000 r-xp 00000000 08:05 4325520 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-pi-gtk-3655.so
    7fe4197fa000-7fe4198f9000 ---p 00072000 08:05 4325520 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-pi-gtk-3655.so
    7fe4198f9000-7fe4198fc000 rwxp 00071000 08:05 4325520 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-pi-gtk-3655.so
    7fe4198fc000-7fe4198fe000 rwxp 00000000 00:00 0
    7fe4198fe000-7fe41997c000 r-xp 00000000 08:05 4325519 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-gtk-3655.so
    7fe41997c000-7fe419a7b000 ---p 0007e000 08:05 4325519 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-gtk-3655.so
    7fe419a7b000-7fe419a82000 rwxp 0007d000 08:05 4325519 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/197/1/.cp/libswt-gtk-3655.so
    7fe419a82000-7fe419a85000 rwxp 00000000 00:00 0
    7fe419a85000-7fe419a88000 ---p 00000000 00:00 0
    7fe419a88000-7fe419b86000 rwxp 00000000 00:00 0
    7fe419b86000-7fe419b89000 ---p 00000000 00:00 0
    7fe419b89000-7fe419c87000 rwxp 00000000 00:00 0
    7fe419c87000-7fe419c8a000 ---p 00000000 00:00 0
    7fe419c8a000-7fe419d88000 rwxp 00000000 00:00 0
    7fe419d88000-7fe419d8b000 ---p 00000000 00:00 0
    7fe419d8b000-7fe419e89000 rwxp 00000000 00:00 0
    7fe419e89000-7fe419e8c000 ---p 00000000 00:00 0
    7fe419e8c000-7fe419f8a000 rwxp 00000000 00:00 0
    7fe419f8b000-7fe419f94000 r-xs 00000000 08:02 396911 /var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-3
    7fe419f94000-7fe419f97000 ---p 00000000 00:00 0
    7fe419f97000-7fe41a095000 rwxp 00000000 00:00 0
    7fe41a098000-7fe41a0a2000 r-xs 00066000 08:05 4197913 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ltk.ui.refactoring_3.5.0.v20100526-0800.jar
    7fe41a0a2000-7fe41a0e9000 r-xs 003ab000 08:05 4197263 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.workbench_3.6.1.M20100826-1330.jar
    7fe41a0e9000-7fe41a0f2000 r-xs 0005a000 08:05 4197887 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.navigator_3.5.0.I20100601-0800.jar
    7fe41a0f2000-7fe41a0f8000 r-xs 00046000 08:05 4197970 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.intro_3.4.0.v20100427.jar
    7fe41a0f8000-7fe41a11e000 r-xs 0020a000 08:05 4197994 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.ide_3.6.1.M20100825-0800.jar
    7fe41a11e000-7fe41a123000 r-xs 00044000 08:05 4197909 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.forms_3.5.2.r36_v20100702.jar
    7fe41a124000-7fe41a137000 r-xs 000dc000 08:05 4197184 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar
    7fe41a137000-7fe41a147000 r-xs 0010a000 08:05 4197884 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.managedbuilder.core_7.0.1.201009141542.jar
    7fe41a147000-7fe41a164000 r-xs 0017a000 08:05 4197231 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.team.cvs.ui_3.3.301.R36x_v20100825-0800.jar
    7fe41a164000-7fe41a16e000 r-xs 00089000 08:05 4197912 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.update.core_3.2.402.R36x_v20100629.jar
    7fe41a16e000-7fe41a171000 r-xs 0000a000 08:05 4197242 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.monitor.ui_3.4.0.v20100608-0100-e3x.jar
    7fe41a171000-7fe41a179000 r-xs 00052000 08:05 4197924 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.tasks.core_3.4.1.v20100730-0100-e3x.jar
    7fe41a179000-7fe41a182000 r-xs 00056000 08:05 4198029 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar
    7fe41a182000-7fe41a197000 r-xs 0023e000 08:05 4197991 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.swt.gtk.linux.x86_64_3.6.1.v3655c.jar
    7fe41a197000-7fe41a1a0000 r-xs 00069000 08:05 4197917 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.search_3.6.0.v20100520-0800.jar
    7fe41a1a3000-7fe41a1a7000 r-xs 00021000 08:05 4197880 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar
    7fe41a1a7000-7fe41a1af000 r-xs 00049000 08:05 4197890 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar
    7fe41a1b5000-7fe41a1bc000 r-xs 00048000 08:05 4197183 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ltk.core.refactoring_3.5.100.v20100526-0800.jar
    7fe41a1bc000-7fe41a1be000 r-xs 0000b000 08:05 4197931 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar
    7fe41a1c1000-7fe41a1c4000 r-xs 00013000 08:02 1439018 /opt/java/jre/lib/jce.jar
    7fe41a1c8000-7fe41a1ce000 r-xs 00032000 08:05 4197967 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.context.ui_3.4.1.v20100909-0100-e3x.jar
    7fe41a1ce000-7fe41a1ed000 r-xs 0016b000 08:05 4197891 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.tasks.ui_3.4.2.v20100902-0100-e3x.jar
    7fe41a1ed000-7fe41a1f6000 r-xs 00064000 08:05 4197992 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.make.ui_7.0.0.201009141542.jar
    7fe41a1f8000-7fe41a201000 r-xs 0005c000 08:05 4197230 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.make.core_7.0.0.201009141542.jar
    7fe41a201000-7fe41a209000 r-xs 0004c000 08:05 4197801 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.debug.core_3.6.0.v20100519.jar
    7fe41a209000-7fe41a20c000 rwxs 00000000 00:04 2588703 /SYSV00000000 (deleted)
    7fe41a20c000-7fe41a223000 r-xs 000db000 08:05 4197802 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.debug.ui_7.0.0.201009141542.jar
    7fe41a224000-7fe41a228000 r-xs 00016000 08:05 4197252 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.views.properties.tabbed_3.5.100.I20100509-0800.jar
    7fe41a228000-7fe41a22b000 r-xs 00013000 08:05 4197204 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.views_3.5.0.I20100527-0800.jar
    7fe41a22b000-7fe41a22e000 r-xs 00014000 08:05 4197191 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar
    7fe41a22e000-7fe41a236000 r-xs 0005a000 08:05 4197246 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.managedbuilder.ui_7.0.0.201009141542.jar
    7fe41a237000-7fe41a23c000 r-xs 00031000 08:05 4197933 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.launch_6.1.0.201009141542.jar
    7fe41a23c000-7fe41a244000 r-xs 0003b000 08:05 4197796 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar
    7fe41a244000-7fe41a247000 r-xs 00013000 08:05 4197878 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.expressions_3.4.200.v20100505.jar
    7fe41a248000-7fe41a24d000 r-xs 00021000 08:05 4197240 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui_3.6.1.M20100826-1330.jar
    7fe41a24d000-7fe41a257000 r-xs 00084000 08:05 4198026 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.team.cvs.core_3.3.300.I20100526-0800.jar
    7fe41a257000-7fe41a25a000 r-xp 00000000 08:02 141280 /usr/share/locale/fr/LC_MESSAGES/atk10.mo
    7fe41a25a000-7fe41a25c000 r-xs 0000a000 08:05 4197179 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.managedbuilder.gnu.ui_7.0.0.201009141542.jar
    7fe41a25c000-7fe41a271000 r-xs 000f1000 08:05 4197995 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.jface_3.6.1.M20100825-0800.jar
    7fe41a272000-7fe41a291000 r-xs 00000000 08:02 396910 /var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le64.cache-3
    7fe41a291000-7fe41a294000 r-xs 00014000 08:05 4197900 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar
    7fe41a294000-7fe41a298000 r-xs 00017000 08:05 4198028 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.commands_3.6.0.I20100512-1500.jar
    7fe41a298000-7fe41a29a000 r-xs 00001000 08:05 4197216 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800/compatibility.jar
    7fe41a29a000-7fe41a29e000 r-xs 0001d000 08:05 4197873 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.externaltools_3.2.0.v20100427.jar
    7fe41a29e000-7fe41a2a0000 r-xs 0002b000 08:05 4197791 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar
    7fe41a2a0000-7fe41a2a3000 r-xs 0000e000 08:05 4197227 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar
    7fe41a2a3000-7fe41a2a5000 r-xs 00015000 08:05 4197960 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar
    7fe41a2a5000-7fe41a2a9000 r-xs 0003b000 08:05 4197797 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.help_3.5.0.v20100524.jar
    7fe41a2a9000-7fe41a2ab000 r-xs 00017000 08:05 4197972 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.common_3.6.0.v20100503.jar
    7fe41a2ac000-7fe41a2b0000 r-xs 00034000 08:05 4197984 /home/hyviquel/Applications/eclipse_c/plugins/com.jcraft.jsch_0.1.41.v200903070017.jar
    7fe41a2b0000-7fe41a2b3000 r-xs 0000e000 08:05 4197206 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.tasks.search_3.4.0.v20100608-0100-e3x.jar
    7fe41a2b3000-7fe41a2b7000 r-xs 00017000 08:05 4197264 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.team.ui_3.4.2.v20100909-0100-e3x.jar
    7fe41a2b7000-7fe41a2bc000 r-xs 0002d000 08:05 4197958 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.bugzilla.ui_3.4.2.v20100909-0100-e3x.jar
    7fe41a2bc000-7fe41a2c0000 r-xs 00031000 08:05 4197185 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.bugzilla.core_3.4.2.v20100902-0100-e3x.jar
    7fe41a2c0000-7fe41a2c9000 r-xs 00059000 08:05 4197235 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.commons.ui_3.4.0.v20100608-0100-e3x.jar
    7fe41a2c9000-7fe41a2d5000 r-xs 00082000 08:05 4198031 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar
    7fe41a2d5000-7fe41a2d9000 r-xs 00029000 08:05 4197916 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.equinox.registry_3.5.0.v20100503.jar
    7fe41a2da000-7fe41a2dc000 r-xs 00017000 08:05 4197228 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.update.configurator_3.3.100.v20100512.jar
    7fe41a2dc000-7fe41a2e2000 r-xs 00049000 08:05 4197976 /home/hyviquel/Applications/eclipse_c/plugins/org.apache.commons.httpclient_3.1.0.v201005080502.jar
    7fe41a2e2000-7fe41a2e4000 r-xs 0000f000 08:05 4197988 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.commons.net_3.4.1.v20100625-2100-e3x.jar
    7fe41a2e6000-7fe41a2e8000 r-xs 00007000 08:05 4198032 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.variables_3.2.400.v20100505.jar
    7fe41a2e8000-7fe41a2ea000 r-xs 00005000 08:05 4198027 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.commons.core_3.4.0.v20100608-0100-e3x.jar
    7fe41a2ea000-7fe41a2eb000 r-xs 00002000 08:05 4197945 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520/runtime_registry_compatibility.jar
    7fe41a2eb000-7fe41a2ec000 r-xs 00003000 08:05 4197938 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.core.linux_5.2.0.201009141542.jar
    7fe41a2ec000-7fe41a2ee000 r-xs 00001000 08:05 4325768 /home/hyviquel/Applications/eclipse_c/configuration/org.eclipse.osgi/bundles/24/1/.cp/cdt_linux.jar
    7fe41a2ee000-7fe41a2ef000 r-xs 00004000 08:05 4197177 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.swt_3.6.1.v3655c.jar
    7fe41a2ef000-7fe41a2f0000 r-xp 00000000 00:00 0
    7fe41a2f0000-7fe41a2f3000 r-xs 00018000 08:05 4197175 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.context.core_3.4.1.v20100909-0100-e3x.jar
    7fe41a2f3000-7fe41a2f5000 r-xs 00010000 08:05 4197205 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.cdt.mylyn.ui_1.1.3.v20100909-0100-e3x.jar
    7fe41a2f5000-7fe41a2f7000 r-xs 0000e000 08:05 4197174 /home/hyviquel/Applications/eclipse_c/plugins/org.eclipse.mylyn.resources.ui_3.4.1.v20100909-0100-e3x.jar
    7fe41a2f7000-7fe41a2fe000 r-xp 00000000 08:02 1439726 /opt/java/jre/lib/amd64/libnio.so
    7fe41a2fe000-7fe41a3fd000 ---p 00007000 08:02 1439726 /opt/java/jre/lib/amd64/libnio.so
    7fe41a3fd000-7fe41a3ff000 rwxp 00006000 08:02 1439726 /opt/java/jre/lib/amd64/libnio.so
    7fe41a3ff000-7fe41a412000 r-xp 00000000 08:02 1439768 /opt/java/jre/lib/amd64/libnet.so
    7fe41a412000-7fe41a513000 ---p 00013000 08:02 1439768 /opt/java/jre/lib/amd64/libnet.so
    7fe41a513000-7fe41a516000 rwxp 00014000 08:02 1439768 /opt/java/jre/lib/amd64/libnet.so
    7fe41a516000-7fe41a519000 r-xp 00000000 08:02 145454 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
    7fe41a519000-7fe41a719000 ---p 00003000 08:02 145454 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
    7fe41a719000-7fe41a71a000 rwxp 00003000 08:02 145454 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
    7fe41a71a000-7fe41a723000 r-xp 00000000 08:02 136937 /usr/lib/libltdl.so.7.3.0
    7fe41a723000-7fe41a922000 ---p 00009000 08:02 136937 /usr/lib/libltdl.so.7.3.0
    7fe41a922000-7fe41a923000 rwxp 00008000 08:02 136937 /usr/lib/libltdl.so.7.3.0
    7fe41a923000-7fe41a931000 r-xp 00000000 08:02 151488 /usr/lib/libtdb.so.1.2.1
    7fe41a931000-7fe41ab30000 ---p 0000e000 08:02 151488 /usr/lib/libtdb.so.1.2.1
    7fe41ab30000-7fe41ab31000 rwxp 0000d000 08:02 151488 /usr/lib/libtdb.so.1.2.1
    7fe41ab31000-7fe41ab36000 r-xp 00000000 08:02 146987 /usr/lib/libogg.so.0.7.1
    7fe41ab36000-7fe41ad36000 ---p 00005000 08:02 146987 /usr/lib/libogg.so.0.7.1
    7fe41ad36000-7fe41ad37000 rwxp 00005000 08:02 146987 /usr/lib/libogg.so.0.7.1
    7fe41ad37000-7fe41ad62000 r-xp 00000000 08:02 149864 /usr/lib/libvorbis.so.0.4.5
    7fe41ad62000-7fe41af61000 ---p 0002b000 08:02 149864 /usr/lib/libvorbis.so.0.4.5
    7fe41af61000-7fe41af62000 rwxp 0002a000 08:02 149864 /usr/lib/libvorbis.so.0.4.5
    7fe41af62000-7fe41af69000 r-xp 00000000 08:02 149863 /usr/lib/libvorbisfile.so.3.3.4
    7fe41af69000-7fe41b168000 ---p 00007000 08:02 149863 /usr/lib/libvorbisfile.so.3.3.4
    7fe41b168000-7fe41b169000 rwxp 00006000 08:02 149863 /usr/lib/libvorbisfile.so.3.3.4
    7fe41b169000-7fe41b178000 r-xp 00000000 08:02 134482 /usr/lib/libcanberra.so.0.2.4
    7fe41b178000-7fe41b378000 ---p 0000f000 08:02 134482 /usr/lib/libcanberra.so.0.2.4
    7fe41b378000-7fe41b379000 rwxp 0000f000 08:02 134482 /usr/lib/libcanberra.so.0.2.4
    7fe41b379000-7fe41b37d000 r-xp 00000000 08:02 134485 /usr/lib/libcanberra-gtk.so.0.1.7
    7fe41b37d000-7fe41b57c000 ---p 00004000 08:02 134485 /usr/lib/libcanberra-gtk.so.0.1.7
    7fe41b57c000-7fe41b57d000 rwxp 00003000 08:02 134485 /usr/lib/libcanberra-gtk.so.0.1.7
    7fe41b57d000-7fe41b582000 r-xp 00000000 08:02 149206 /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    7fe41b582000-7fe41b781000 ---p 00005000 08:02 149206 /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    7fe41b781000-7fe41b782000 rwxp 00004000 08:02 149206 /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    7fe41b782000-7fe41b7ad000 r-xp 00000000 08:02 155329 /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    7fe41b7ad000-7fe41b9ad000 ---p 0002b000 08:02 155329 /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    7fe41b9ad000-7fe41b9ae000 rwxp 0002b000 08:02 155329 /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    7fe41b9ae000-7fe41b9de000 r-xp 00000000 08:02 133443 /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
    7fe41b9de000-7fe41bbde000 ---p 00030000 08:02 133443 /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
    7fe41bbde000-7fe41bbdf000 rwxp 00030000 08:02 133443 /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
    7fe41bbdf000-7fe41bbfd000 r-xp 00000000 08:02 142101 /usr/lib/libatk-1.0.so.0.3209.1
    7fe41bbfd000-7fe41bdfd000 ---p 0001e000 08:02 142101 /usr/lib/libatk-1.0.so.0.3209.1
    7fe41bdfd000-7fe41be00000 rwxp 0001e000 08:02 142101 /usr/lib/libatk-1.0.so.0.3209.1
    7fe41be00000-7fe41c228000 r-xp 00000000 08:02 145586 /usr/lib/libgtk-x11-2.0.so.0.2200.1
    7fe41c228000-7fe41c428000 ---p 00428000 08:02 145586 /usr/lib/libgtk-x11-2.0.so.0.2200.1
    7fe41c428000-7fe41c433000 rwxp 00428000 08:02 145586 /usr/lib/libgtk-x11-2.0.so.0.2200.1
    7fe41c433000-7fe41c435000 rwxp 00000000 00:00 0
    7fe41c435000-7fe41c43a000 r-xp 00000000 08:02 157070 /usr/lib/libXdmcp.so.6.0.0
    7fe41c43a000-7fe41c639000 ---p 00005000 08:02 157070 /usr/lib/libXdmcp.so.6.0.0
    7fe41c639000-7fe41c63a000 rwxp 00004000 08:02 157070 /usr/lib/libXdmcp.so.6.0.0
    7fe41c63a000-7fe41c63c000 r-xp 00000000 08:02 157084 /usr/lib/libXau.so.6.0.0
    7fe41c63c000-7fe41c83b000 ---p 00002000 08:02 157084 /usr/lib/libXau.so.6.0.0
    7fe41c83b000-7fe41c83c000 rwxp 00001000 08:02 157084 /usr/lib/libXau.so.6.0.0
    7fe41c83c000-7fe41c857000 r-xp 00000000 08:02 157098 /usr/lib/libxcb.so.1.1.0
    7fe41c857000-7fe41ca56000 ---p 0001b000 08:02 157098 /usr/lib/libxcb.so.1.1.0
    7fe41ca56000-7fe41ca57000 rwxp 0001a000 08:02 157098 /usr/lib/libxcb.so.1.1.0
    7fe41ca57000-7fe41cac0000 r-xp 00000000 08:02 158439 /usr/lib/libpixman-1.so.0.20.2
    7fe41cac0000-7fe41ccc0000 ---p 00069000 08:02 158439 /usr/lib/libpixman-1.so.0.20.2
    7fe41ccc0000-7fe41ccc5000 rwxp 00069000 08:02 158439 /usr/lib/libpixman-1.so.0.20.2
    7fe41ccc5000-7fe41ccec000 r-xp 00000000 08:02 134278 /usr/lib/libexpat.so.1.5.2
    7fe41ccec000-7fe41ceeb000 ---p 00027000 08:02 134278 /usr/lib/libexpat.so.1.5.2
    7fe41ceeb000-7fe41ceee000 rwxp 00026000 08:02 134278 /usr/lib/libexpat.so.1.5.2
    7fe41ceee000-7fe41cf06000 r-xp 00000000 08:02 131243 /usr/lib/libz.so.1.2.5
    7fe41cf06000-7fe41d105000 ---p 00018000 08:02 131243 /usr/lib/libz.so.1.2.5
    7fe41d105000-7fe41d106000 rwxp 00017000 08:02 131243 /usr/lib/libz.so.1.2.5
    7fe41d106000-7fe41d119000 r-xp 00000000 08:02 130880 /lib/libresolv-2.13.so
    7fe41d119000-7fe41d319000 ---p 00013000 08:02 130880 /lib/libresolv-2.13.so
    7fe41d319000-7fe41d31a000 r-xp 00013000 08:02 130880 /lib/libresolv-2.13.so
    7fe41d31a000-7fe41d31b000 rwxp 00014000 08:02 130880 /lib/libresolv-2.13.so
    7fe41d31b000-7fe41d31d000 rwxp 00000000 00:00 0
    7fe41d31d000-7fe41d3b1000 r-xp 00000000 08:02 167883 /usr/lib/libfreetype.so.6.6.2
    7fe41d3b1000-7fe41d5b1000 ---p 00094000 08:02 167883 /usr/lib/libfreetype.so.6.6.2
    7fe41d5b1000-7fe41d5b7000 rwxp 00094000 08:02 167883 /usr/lib/libfreetype.so.6.6.2
    7fe41d5b7000-7fe41d5e3000 r-xp 00000000 08:02 142280 /usr/lib/libpangoft2-1.0.so.0.2800.3
    7fe41d5e3000-7fe41d7e2000 ---p 0002c000 08:02 142280 /usr/lib/libpangoft2-1.0.so.0.2800.3
    7fe41d7e2000-7fe41d7e4000 rwxp 0002b000 08:02 142280 /usr/lib/libpangoft2-1.0.so.0.2800.3
    7fe41d7e4000-7fe41d91d000 r-xp 00000000 08:02 146794 /usr/lib/libX11.so.6.3.0
    7fe41d91d000-7fe41db1c000 ---p 00139000 08:02 146794 /usr/lib/libX11.so.6.3.0
    7fe41db1c000-7fe41db22000 rwxp 00138000 08:02 146794 /usr/lib/libX11.so.6.3.0
    7fe41db22000-7fe41dbc9000 r-xp 00000000 08:02 142157 /usr/lib/libcairo.so.2.11000.2
    7fe41dbc9000-7fe41ddc9000 ---p 000a7000 08:02 142157 /usr/lib/libcairo.so.2.11000.2
    7fe41ddc9000-7fe41ddcb000 rwxp 000a7000 08:02 142157 /usr/lib/libcairo.so.2.11000.2
    7fe41ddcb000-7fe41ddce000 rwxp 00000000 00:00 0
    7fe41ddce000-7fe41ddf7000 r-xp 00000000 08:02 142135 /usr/lib/libpng14.so.14.5.0
    7fe41ddf7000-7fe41dff6000 ---p 00029000 08:02 142135 /usr/lib/libpng14.so.14.5.0
    7fe41dff6000-7fe41dff7000 rwxp 00028000 08:02 142135 /usr/lib/libpng14.so.14.5.0
    7fe41dff7000-7fe41dffa000 r-xp 00000000 08:02 133251 /usr/lib/libgmodule-2.0.so.0.2600.1
    7fe41dffa000-7fe41e1f9000 ---p 00003000 08:02 133251 /usr/lib/libgmodule-2.0.so.0.2600.1
    7fe41e1f9000-7fe41e1fa000 rwxp 00002000 08:02 133251 /usr/lib/libgmodule-2.0.so.0.2600.1
    7fe41e1fa000-7fe41e21a000 r-xp 00000000 08:02 145433 /usr/lib/libgdk_pixbuf-2.0.so.0.2200.1
    7fe41e21a000-7fe41e41a000 ---p 00020000 08:02 145433 /usr/lib/libgdk_pixbuf-2.0.so.0.2200.1
    7fe41e41a000-7fe41e41b000 rwxp 00020000 08:02 145433 /usr/lib/libgdk_pixbuf-2.0.so.0.2200.1
    7fe41e41b000-7fe41e420000 r-xp 00000000 08:02 158670 /usr/lib/libXfixes.so.3.1.0
    7fe41e420000-7fe41e61f000 ---p 00005000 08:02 158670 /usr/lib/libXfixes.so.3.1.0
    7fe41e61f000-7fe41e620000 rwxp 00004000 08:02 158670 /usr/lib/libXfixes.so.3.1.0
    7fe41e620000-7fe41e622000 r-xp 00000000 08:02 158825 /usr/lib/libXdamage.so.1.1.0
    7fe41e622000-7fe41e821000 ---p 00002000 08:02 158825 /usr/lib/libXdamage.so.1.1.0
    7fe41e821000-7fe41e822000 rwxp 00001000 08:02 158825 /usr/lib/libXdamage.so.1.1.0
    7fe41e822000-7fe41e824000 r-xp 00000000 08:02 158834 /usr/lib/libXcomposite.so.1.0.0
    7fe41e824000-7fe41ea23000 ---p 00002000 08:02 158834 /usr/lib/libXcomposite.so.1.0.0
    7fe41ea23000-7fe41ea24000 rwxp 00001000 08:02 158834 /usr/lib/libXcomposite.so.1.0.0
    7fe41ea24000-7fe41ea2d000 r-xp 00000000 08:02 158673 /usr/lib/libXcursor.so.1.0.2
    7fe41ea2d000-7fe41ec2d000 ---p 00009000 08:02 158673 /usr/lib/libXcursor.so.1.0.2
    7fe41ec2d000-7fe41ec2e000 rwxp 00009000 08:02 158673 /usr/lib/libXcursor.so.1.0.2
    7fe41ec2e000-7fe41ec36000 r-xp 00000000 08:02 158524 /usr/lib/libXrandr.so.2.2.0
    7fe41ec36000-7fe41ee35000 ---p 00008000 08:02 158524 /usr/lib/libXrandr.so.2.2.0
    7fe41ee35000-7fe41ee36000 rwxp 00007000 08:02 158524 /usr/lib/libXrandr.so.2.2.0
    7fe41ee36000-7fe41ee45000 r-xp 00000000 08:02 175632 /usr/lib/libXi.so.6.1.0
    7fe41ee45000-7fe41f044000 ---p 0000f000 08:02 175632 /usr/lib/libXi.so.6.1.0
    7fe41f044000-7fe41f045000 rwxp 0000e000 08:02 175632 /usr/lib/libXi.so.6.1.0
    7fe41f045000-7fe41f047000 r-xp 00000000 08:02 158757 /usr/lib/libXinerama.so.1.0.0
    7fe41f047000-7fe41f246000 ---p 00002000 08:02 158757 /usr/lib/libXinerama.so.1.0.0
    7fe41f246000-7fe41f247000 rwxp 00001000 08:02 158757 /usr/lib/libXinerama.so.1.0.0
    7fe41f247000-7fe41f250000 r-xp 00000000 08:02 158518 /usr/lib/libXrender.so.1.3.0
    7fe41f250000-7fe41f450000 ---p 00009000 08:02 158518 /usr/lib/libXrender.so.1.3.0
    7fe41f450000-7fe41f451000 rwxp 00009000 08:02 158518 /usr/lib/libXrender.so.1.3.0
    7fe41f451000-7fe41f462000 r-xp 00000000 08:02 158030 /usr/lib/libXext.so.6.4.0
    7fe41f462000-7fe41f662000 ---p 00011000 08:02 158030 /usr/lib/libXext.so.6.4.0
    7fe41f662000-7fe41f663000 rwxp 00011000 08:02 158030 /usr/lib/libXext.so.6.4.0
    7fe41f663000-7fe41f697000 r-xp 00000000 08:02 156880 /usr/lib/libfontconfig.so.1.4.4
    7fe41f697000-7fe41f896000 ---p 00034000 08:02 156880 /usr/lib/libfontconfig.so.1.4.4
    7fe41f896000-7fe41f898000 rwxp 00033000 08:02 156880 /usr/lib/libfontconfig.so.1.4.4
    7fe41f898000-7fe41f9a3000 r-xp 00000000 08:02 133255 /usr/lib/libgio-2.0.so.0.2600.1
    7fe41f9a3000-7fe41fba3000 ---p 0010b000 08:02 133255 /usr/lib/libgio-2.0.so.0.2600.1
    7fe41fba3000-7fe41fba8000 rwxp 0010b000 08:02 133255 /usr/lib/libgio-2.0.so.0.2600.1
    7fe41fba8000-7fe41fba9000 rwxp 00000000 00:00 0
    7fe41fba9000-7fe41fbf1000 r-xp 00000000 08:02 142274 /usr/lib/libpango-1.0.so.0.2800.3
    7fe41fbf1000-7fe41fdf1000 ---p 00048000 08:02 142274 /usr/lib/libpango-1.0.so.0.2800.3
    7fe41fdf1000-7fe41fdf4000 rwxp 00048000 08:02 142274 /usr/lib/libpango-1.0.so.0.2800.3
    7fe41fdf4000-7fe41fdff000 r-xp 00000000 08:02 142286 /usr/lib/libpangocairo-1.0.so.0.2800.3
    7fe41fdff000-7fe41ffff000 ---p 0000b000 08:02 142286 /usr/lib/libpangocairo-1.0.so.0.2800.3
    7fe41ffff000-7fe420000000 rwxp 0000b000 08:02 142286 /usr/lib/libpangocairo-1.0.so.0.2800.3
    7fe420000000-7fe423835000 rwxp 00000000 00:00 0
    7fe423835000-7fe424000000 ---p 00000000 00:00 0
    7fe424000000-7fe424

    I can confirm this issue for both Eclipse and Vuze.
    In Vuze, try to click the "Vuze HD Network" button, in Eclipse try to use autocompletion.
    The error:
    # A fatal error has been detected by the Java Runtime Environment:                                                                                                                                                                         
    #  SIGSEGV (0xb) at pc=0x612355a2, pid=31668, tid=3076118208                                                                                                                                                                               
    # JRE version: 6.0_22-b22                                                                                                                                                                                                                   
    # Java VM: OpenJDK Client VM (19.0-b09 mixed mode linux-x86 )                                                                                                                                                                               
    # Derivative: IcedTea6 1.10                                                                                                                                                                                                                 
    # Distribution: Custom build (Wed Mar  2 23:13:58 UTC 2011)                                                                                                                                                                                 
    # Problematic frame:                                                                                                                                                                                                                       
    # C  [libxul.so+0xc395a2]                                                                                                                                                                                                                   
    # An error report file with more information is saved as:                                                                                                                                                                                   
    # /home/andi/hs_err_pid31668.log                                                                                                                                                                                                           
    # If you would like to submit a bug report, please include                                                                                                                                                                                 
    # instructions how to reproduce the bug and visit:                                                                                                                                                                                         
    #   http://icedtea.classpath.org/bugzilla                                                                                                                                                                                                   
    # The crash happened outside the Java Virtual Machine in native code.                                                                                                                                                                       
    # See problematic frame for where to report the bug.

  • Applet works on eclipse but not on reg browser (not inited error)

    Hi everybody,
    I've just made an applet, but I don't know why it can't be shown. I'm working with Eclipse, and when I run the .java file, everything works fine. It even works fine when I specify parameters through the eclipse build file parameter arguments.
    Now I would like this to work by using the appletviewer and my html file. When I do this, the application doesn't work anymore and I get this error: Start applet not inited and shows loading java Applet failed when I scroll over to the java applet box on the browser. (Mozilla)
    I used this code in the html file:
    <html>
    <head>
    <title>MicroToolBus Example Plugin Applet 2 </title>
    </head>
    <body>
    <h1>MicroToolBus Example Plugin Applet 2 </h1>
    <hr>
    <applet code =MicroToolBus.class width=400 height=100>
    <param name="ModelName" value="edu.vt.vbi.pathport.client.plugin.microarray.MicroarrayModel">
         <param name="DataLocation" value="c:/eclipse/workspace/PathPort/xml/samples/mageml/pmml.xml">
    </applet>
    </hr>
    </body>
    </html>
    which is located at
    C:\eclipse\workspace\PathPort\build\edu\vt\vbi\pathport\client\toolbus\MicroToolBus.html
    The MicroToolBus.class file is located in the same directory. What am I doing wrong. I tried putting the class file and the html in the same directory as the actual .java file of the applet, but that didn't seem to work either. Thanks in advance; your help and suggestions are much appreciated,

    What am I doing wrong?Your getting caught in the Sun/Microsoft war. Numerous casualties. For rehab, see:
    http://www.MartinRinehart.com
    Click "Articles", "Launching Applets".
    Warning: make a big mug of java before you start. This is not trivial stuff.

  • JButtons in JApplet Don't Work (Worked with JFrame)

    This is my first time working with applets. I got basic 'HelloWorld' applets to work and now I am trying to convert a basic Pig Latin translator from a JFrame to a JApplet. The translator works perfectly as a JFrame. I followed this site to change the JFrame to a JAppet:
    JFrameToJApplet
    I just finally got the applet to successfully load on the browser, but the buttons seem to have no actions associated with them. I'm sure it's something stupid and it''s probably because I don't understand the underlying principles of applets. Understanding applets is on my list of things to do though, but for now, I would just like it to work so that I can teach my students the very basics of applets (I am an AP CS teacher).
    Here's the code (most was generated by NetBeans):
    public class PigLatinGUI extends javax.swing.JApplet {
        /** Creates new form PigLatinGUI */
        public PigLatinGUI() {
            init();
            jScrollPane1.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
            jScrollPane1.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
            jTextArea1.setLineWrap(true);
            jTextArea1.setWrapStyleWord(true);
            jTextArea2.setLineWrap(true);
            jTextArea2.setWrapStyleWord(true);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        //@SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        public void init() {
            jButton1 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jScrollPane2 = new javax.swing.JScrollPane();
            jTextArea2 = new javax.swing.JTextArea();
            jButton2 = new javax.swing.JButton();
            //setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            //setTitle("English to PigLatin Translator");
            //setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
            //setResizable(false);
            jButton1.setText("translate to Pig Latin");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jLabel1.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
            jLabel1.setText("In English:");
            jLabel2.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
            jLabel2.setText("In Pig Latin:");
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            jTextArea2.setColumns(20);
            jTextArea2.setEditable(false);
            jTextArea2.setRows(5);
            jScrollPane2.setViewportView(jTextArea2);
            jButton2.setText("clear");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addComponent(jLabel1)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jButton1)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                            .addComponent(jButton2))
                        .addComponent(jLabel2)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 372, Short.MAX_VALUE)
                        .addComponent(jScrollPane2))
                    .addContainerGap(18, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addGap(15, 15, 15)
                    .addComponent(jLabel1)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 53, Short.MAX_VALUE)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButton1)
                        .addComponent(jButton2))
                    .addGap(18, 18, 18)
                    .addComponent(jLabel2)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(63, 63, 63))
           // pack();
        }// </editor-fold>                       
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            PigLatin p = new PigLatin();
            jTextArea2.setText(p.translate(jTextArea1.getText()));
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            jTextArea1.setText("");
            jTextArea2.setText("");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new PigLatinGUI().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JScrollPane jScrollPane2;
        private javax.swing.JTextArea jTextArea1;
        private javax.swing.JTextArea jTextArea2;
        // End of variables declaration                  
    }

    bigbamboo wrote:
    ..In any event, I am not using init() twice as PigLatin.java is just the model and contains nothing related to the view.You were saying?
    andrew@pc1:/media$ javac PigLatinGUI.java
    andrew@pc1:/media$ appletviewer PigLatinGUI.java
    init() method count is 1
    init() method count is 2
    andrew@pc1:/media$
    Code
    // <applet code='PigLatinGUI' width=200 height='200'></applet>
    import javax.swing.ScrollPaneConstants;
    public class PigLatinGUI extends javax.swing.JApplet {
         public int initCount = 0;
        /** Creates new form PigLatinGUI */
        public PigLatinGUI() {
            init();
            jScrollPane1.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
            jScrollPane1.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
            jTextArea1.setLineWrap(true);
            jTextArea1.setWrapStyleWord(true);
            jTextArea2.setLineWrap(true);
            jTextArea2.setWrapStyleWord(true);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        //@SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        public void init() {
    System.out.println("init() method count is " + ++initCount);
            jButton1 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jScrollPane2 = new javax.swing.JScrollPane();
            jTextArea2 = new javax.swing.JTextArea();
            jButton2 = new javax.swing.JButton();
            //setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            //setTitle("English to PigLatin Translator");
            //setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
            //setResizable(false);
            jButton1.setText("translate to Pig Latin");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jLabel1.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
            jLabel1.setText("In English:");
            jLabel2.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
            jLabel2.setText("In Pig Latin:");
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            jTextArea2.setColumns(20);
            jTextArea2.setEditable(false);
            jTextArea2.setRows(5);
            jScrollPane2.setViewportView(jTextArea2);
            jButton2.setText("clear");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addComponent(jLabel1)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jButton1)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                            .addComponent(jButton2))
                        .addComponent(jLabel2)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 372, Short.MAX_VALUE)
                        .addComponent(jScrollPane2))
                    .addContainerGap(18, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addGap(15, 15, 15)
                    .addComponent(jLabel1)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 53, Short.MAX_VALUE)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButton1)
                        .addComponent(jButton2))
                    .addGap(18, 18, 18)
                    .addComponent(jLabel2)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(63, 63, 63))
           // pack();
        }// </editor-fold>                       
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            PigLatin p = new PigLatin();
            jTextArea2.setText(p.translate(jTextArea1.getText()));
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            jTextArea1.setText("");
            jTextArea2.setText("");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new PigLatinGUI().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JScrollPane jScrollPane2;
        private javax.swing.JTextArea jTextArea1;
        private javax.swing.JTextArea jTextArea2;
        // End of variables declaration                  
    }I only had to add two lines to the code to confirm my original statement. This involves such basic debugging skills that I warrant you should not be coding GUIs in Java yet, let alone applets!

  • Eclipse-cdt brakes eclipse [solved]

    Eclipse works by itself but as soon as I install eclipse-cdt I get this error.
    An error has occurred. See the log file
    /home/tjwallis/.eclipse/org.eclipse.platform_3.4.0_1543616141/configuration/1229824792149.log.
    And this is the terminal output.
    org.osgi.framework.BundleException: State change in progress for bundle "reference:file:plugins/org.eclipse.equinox.p2.reconciler.dropins_1.0.2.R34x_v20080909.jar" by thread "Start Level Event Dispatcher".
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.java:1144)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstall(AbstractBundle.java:833)
    at org.eclipse.equinox.internal.simpleconfigurator.ConfigApplier.uninstallBundles(ConfigApplier.java:360)
    at org.eclipse.equinox.internal.simpleconfigurator.ConfigApplier.install(ConfigApplier.java:68)
    at org.eclipse.equinox.internal.simpleconfigurator.SimpleConfiguratorImpl.applyConfiguration(SimpleConfiguratorImpl.java:124)
    at org.eclipse.equinox.internal.simpleconfigurator.SimpleConfiguratorImpl.applyConfiguration(SimpleConfiguratorImpl.java:138)
    at org.eclipse.equinox.internal.p2.reconciler.dropins.ProfileSynchronizer.applyConfiguration(ProfileSynchronizer.java:391)
    at org.eclipse.equinox.internal.p2.reconciler.dropins.ProfileSynchronizer.synchronize(ProfileSynchronizer.java:105)
    at org.eclipse.equinox.internal.p2.reconciler.dropins.Activator.synchronize(Activator.java:402)
    at org.eclipse.equinox.internal.p2.reconciler.dropins.Activator.start(Activator.java:161)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1009)
    at java.security.AccessController.doPrivileged(libgcj.so.9)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:984)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:355)
    at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1074)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:616)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:508)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:299)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:489)
    at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:211)
    at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:321)
    Caused by: org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.java:1144)
    ...22 more
    It has something do with the installation of eclipse-cdt. But I can't figure out how to fix it.
    Last edited by tjwallis (2008-12-24 02:19:02)

    from the website, you dont have to install it couse is made in java, download and unzip and thats it

  • JavaScript fails to work in JDeveloper (but works in Eclipse)

    Hi all,
    I'm going crazy over this. Hope someone here can help me out.
    I'm in the process of migrating a JAVA web application from WebSphere to Oracle App Server 10g.
    Two days ago, I ran into an issue which is driving me nut. My javascript code which works fine
    in Eclipse (WebSphere) fails to work in JDeveloper !!!
    I've tried to figure this out by creating some simple .jsp test pages and the same thing happens.
    They work in WebSphere but don't work in JDeveloper !!!
    What I'm trying to do is to use a javascript function to reassign the "action" of the current .jsp page.
    In Eclipse, I click the button, the action is reassigned and the submit() function loads the new page.
    In JDeveloper, the action is reassigned. HOWEVER, the OLD page is loaded!!!
    I'd really appreciate any pointers. Thanks in advance.
    -S.C.-
    P.S. I've noticed that if I change the action to execute an html file (example: form.action = "index.html")
    this will work. So, I'm thinking it has something to do with JavaServer Faces.
    My sample codes:
    =========================================================
    one.jsp
    =========================================================
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <script language="javascript">
    <!--
    function doClick(source)
         var form = source;
         var formId = form.id;
         // get form id
         while (form.tagName != 'FORM')
              form = form.parentNode;
         alert("formId: " + formId);
         alert("current form action = " + form.action);
         // change action so to load two.faces
    form.action = "/adis/two.faces"
    alert("new action = " + form.action);
    // this should load up the GRAY page (two.faces)
    form.submit();
    //-->
    </script>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>two</title>
    </head>
    <body bgcolor="cyan">
    <h:form id="frmone" >
    <h:outputText id="txtone" value="This is form ONE"></h:outputText>
    <h:outputText value="<br>" escape="false"></h:outputText>
    <h:commandButton id="btnSend" value="Submit" onclick="return doClick(this)"></h:commandButton>
    <h:inputHidden id="eventId" value=""/>
    </h:form>
    </body>
    </html>
    </f:view>
    ================================================================
    two.jsp
    ===============================================================
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>two</title>
    </head>
    <body bgcolor="gray">
    <h:form id="frmtwo">
                   <h:outputText value="This is two.jsp"></h:outputText>
                   <h:outputText value="This page should appear after then action change."></h:outputText>               
    </h:form>
    </body>
    </html>
    </f:view>
    Edited by: EsCee on Sep 15, 2008 6:50 AM

    I've found that sometimes I have to force my browser to dump the cached version of some Javascript, and load a fresh copy from the web server. You can do that by clearing private data, or by finding the names of all the *.js files being loaded by your page (view source), typing their URLs and pressing the refresh button.
    I'm thinking that maybe deployment to OAS does not reset the last modified date on these files so that the web browser doesn't know that the file has changed and it shouldn't use the cached copy.

  • Strange mouse click behaviour, (GTK?) buttons don't work

    Hey,
    I have had this problem since the last major upgrade, which included Kernel, Xfce, Xorg. Sadly I can't pinpoint this problem, that's why I wanted to ask if anybody else has the same problem and they have figured out what the cause is.
    Essentially this mostly happens with the Xfce panel, while clicking on a Laucher button. I click on a button, which works, then release mouse1, but then the button seems to be still pressed, as if mouse1 was not released. When the mouse leaves the area, the button "pops up" again, but when hovering over the button again, it looks like pressed again, even though it's not.
    That's not all that bad, but what happened recently, is while using Eclipse some (very random) buttons simply won't work at all. All this while they seem pressed, even though mouse1 has been released. I then have to use the keyboard to activate the button.
    I don't mind the Xfce problem so much, but I need Eclipse for work, and it just can't be the solution that I have to use the Keyboard when a button doesn't seem to work. The problem seems to be limited to button-like (including Tabs) GTK GUI elements. No problem with Qt yet.
    This is a laptop computer, with a normal touchpad and a USB mouse attached to it.
    And my mouse is NOT broken, as I have tested with a number of different mice and even other OSes on the same machine with same hardware configuration!
    Thanks,
    m.

    This may be related to the issue where buttons in Flash embeds don't work. You can probably 'fix' the issue by downgrading gtk2 to 2.16.5.
    ## Actually maybe not. Meh.
    Last edited by Peasantoid (2009-10-24 21:20:24)

  • "Enable Swipe" don't work and Tablet Layout on a Smartphone

    Hi there,
    I have two big problems with my own site www.mhgrafikdesign.de:
    1. I have different slideshows in my tablet version of my site. I created the slideshow before one of the updates with the feature "Enable swipe" came out. However, it worked well on my Samsung Galaxy Tab 10.1n. Now I have a Microsoft Surface and it's not working anymore although "Enable Swipe" is enabled. I don't know if the Microsoft Surface has problems with the slideshow or one of the updates has "damaged" my slideshow. Please help me! Any ideas?
    2. I have a HTC 8S smartphone and if I type www.mhgrafikdesign.de my smartphone always show me the tablet version. Any idea why? P.S. Swiping there is also not possible.
    Many thanks for quick help. My website is my flagship in the web and it's a little bit embarrassing if my slideshow on the tab don't work... = /

    This is now a slideshow created with Muse: Homepage
    The slideshow uses fullscreen mode and was build with the latest version of Muse. On my Win8-Tablet, it is not working. I tested this with the IE11 in desktop- and in modern-ui-mode.
    Next to this problem, I also run into these things:
    1. Using the buttons to go forward and backward in the slideshow will select the text-arrow inside the button when touched.
    2. Clicking the forward- and backward-button behaves different. Windows Desktop -> slideshow does not roll back, so you can click forever in one direction, no feedback that you reached the end. On iOS -> slideshow will be rolled back and you get the visual feedback to start over again.
    3. Zoom into the fullscreen-slideshow will result in strange and not really controllabel behaviour. Zooming in does not allow to pan.
    But I am not talking only about the phones. It is more about windows tablets in general. So, content can be viewed in the InternetExplorer11 in desktop-mode and also in modern-UI-mode (touch does work in both modes). But it is also possible, that people use other browsers like Firefox and Chrome. I think, it would be a quite a good idea to translate the movement of the mousepointer into gestures. This javascript library shows what I think is a good aproach: Hammer.JS - Hammer.js

  • Adobe Flash & Javascript don't work even though Enabled

    Ever since what I think was either a Firefox upgrade (I don't know which one) or installation of Quicktime, my Adobe Flash Plugin is perpetually crashed and I cannot play any Flash content on any website. All that displays in place of the video is a gray screen with the sad-face Lego icon and the message: “The Adobe Flash Plugin has crashed. Please reload the page to try again.” (See attached image.) But it will not resolve when reloaded.
    No Flash videos on any sites work. HTML5 videos work on YouTube when tested, but non-HTML5 videos won't work.
    Also, my Javascript does not seem to be working since at least some displays requiring javascript don't work. Sometimes the display just doesn't work, and sometimes I get a message that javascript is disabled and must be enabled, but it is already enabled (set to “true” in about:config).
    I have spent days scouring every help forum entry I can find on troubleshooting Flash Player and Javascript. Everything on my end seems to be in order and I cannot find or fix either problem. I think it is possible the issue could have its roots in the fact that Javascript seems to not be working which may be preventing Flash Player content from working...??
    Also, Flash content does work in I.E. but not in Firefox (I do not have Chrome installed so did not test in Chrome). I have too many window tabs open in Firefox and can't switch to I.E. (nor do I like to use I.E.).
    PLEASE HELP as this is crippling for very important work deadlines I have.
    This is what else I know and have tried:
    I have a Toshiba Satellite C75D-A Laptop;
    Processor: AMD A6-5200 APU with Radeon HD Graphics; x64; 2.00 Ghz;
    RAM: 8 MB;
    OS: 64-bit system; Windows 8.1 (but some auto-check utilities detect it as 8.0 because it was upgraded.);
    Graphics Card: “Desktop Graphics” System – AMD Radeon HD 8400 (0x9830);
    Installed Graphics Driver Version: AMD 13.352.1004.1007 (Driver Date: 4/22/2014)
    My Device Manager graphics driver updater states: “driver software is up to date.”
    From the AMD website: the graphics driver auto-detect utility recommended the AMD Catalyst Driver (amd-catalyst-omega-14.12-without-dotnet45-win8.1-64bit.exe) I tried installing this driver, but it won't install. After trying to install, I got a message stating: “We are unable to find a driver for your system.” But Device Manager states I have a current driver, and my graphics card & driver seem to be working fine, so I do not believe this is part of the issue.
    I am using Latest Firefox version 35.0.1; and
    Using Latest Flash Player: 32-bit NPAPI Plug-in Version: 16.0.0.296; designated: “always activate” (Downloaded new update several times, including fresh install after uninstall; system & web address icons indicate Flash is enabled).
    I turned off hardware acceleration in FF Tools>Options>Advanced>General
    I disabled WebGL as explained here: https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration
    I am using Ad-Block Plus which has never affected things in the past. I have not tried starting FF in Safe Mode because I believe I will lose all open tabs and not be able to recover them (I may have over 200 open). But disabling add-ons has no effect (I disabled all except for Sessions Manager in case of a crash). (My No-Script has been disabled for at least six months.)
    I have Windows Media Player and Quicktime installed.
    Quicktime is most recent upgrade (7.7.6) so should not be a problem according to:
    “QuickTime plugin takes over Flash” at:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here)
    Disabling Quicktime had no effect in the prior version of FF (ver. 35.0), but in latest FF ver. 35.0.1, Flash videos only display a plain (blank) gray screen instead of the sad-faced icon and crash message.
    (I tried to uninstall Quicktime altogether, but was not able to due to Error codes 2502 & 2503. I tried troubleshooting that as well with no luck using methods successful for other programs, including here:
    http://www.fixkb.com/2014/01/error-2503-and-2502-when-uninstalling-on-windows-8.html;
    & here:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-winapps/re-internal-error-codes-2502-and-2503-for/ba5f2145-aa6e-4cc0-81a7-e4346f43b698.)
    Disabling my FF theme and using the default brought back the sad-faced icon and crash message in the place of videos on some YouTube pages, but not other YouTube pages (where video was still blank gray screen). It also enabled a still Flash image (an ad) to display on a different website page that previously had a Flash Plugin crash message. I have been using this same theme for a couple of years without previous issue. While turning it off did generate an effect on some still imagery, it didn't fix the video problem.
    I tried Disabling Protected Mode in Flash 11.3 as explained here:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here).
    It did not solve the issue.
    I also deleted all storage & data in Flash Player as advised. This had no effect either.
    I've tried all solutions I've been able to find and am at a loss for what to try next. Please help and advise ASAP. Thank you!!

    ''guigs2 [[#answer-684038|said]]''
    <blockquote>
    I truely admire the efforts that have been made to make this work.
    "“We are unable to find a driver for your system.” "
    For it not installing, you need to follow these instructions to install them: see the comments: [http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_devices/windows-10-atiamd-display-drivers/50944d10-dde3-4e08-8244-d54eb2b1e7de] --> take warning though it looks like it has caused issues for others as well.
    Since it was working for some youtube videos and not others, there might be an issue with a particular video codec. DO you have OpenH264 Video Codec provided by Cisco Systems, Inc. plugin?
    Is it possible to try Safe Mode after saving your session with [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager Addon]? IT would test hardware acceleration in Firefox.
    </blockquote>
    Thank you, guigs2! Sorry for my delayed reply...I didn't realize I hadn't gotten back to you. Update is that I did try a whole slew of other troubleshooting steps including starting FF in safe mode, to no avail. However, I was FINALLY (after months) able to solve this problem just today by pure chance!
    The problem was that hardware acceleration was enabled in the Flash settings. I had not been able to turn it off because I didn't have access to the Flash Player settings as long as the crash error message was visible, which was all the time! Today, by a sheer fluke, I saw a static picture in place of the crash message on a Flash video. I snagged the opportunity to call up the settings and turn off hardware acceleration, and it fixed the problem for my whole browser! This has been a frustrating issue because I did not have access to the settings utility as long as I had the crash message, which was always, so my Flash was crippled without the ability for me to fix it until pure luck gave me this window of opportunity.
    Does anyone know another way to access the settings utility if this ever happens again in the future? I could not find a way. (Incidentally, I had tried disabling hardware acceleration via my graphics driver settings, but it didn't fix the problem.) We need Adobe to allow some other way to access the Flash Player settings utility when this problem arises since they aren't accessible when there is a static crash message.
    Thanks again!

  • IPod Touch: apps (facebook, twitter, facetime) don't work properly with my wireless internet having worked perfectly before. Help needed!

    I got my iPod Touch 4g for Christmas 2011 and for the first 2 weeks everything worked fine - I could download apps; use apps to their full potential; use FaceTime; use everything.
    But after the two weeks, the iPod decided to no longer work as well as it had promised. First of all, it would take more than 2 hours to download a single app from the app store and then, straight after that, I couldn't connect to FaceTime (it had worked perfectly before). Then, finally, to top it all off - Facebook and Twitter stopped working on occasions. For example, I couldn't post/send messages or photos on Twitter and at the majority of the time, the News Feeds wouldn't load.
    Sometimes everything works but most of the time it doesn't. I've tried my iPod at every time of the day and it makes no difference - nothing still works! Also, I don't think it is the fault of my wireless internet because I've had an iPod touch before and it worked perfectly, and the laptop that I am writing this question on also works perfectly with wifi.
    The weird thing is that I have used my iPod to its full potential (everything worked fine) at my friends hosue on multiple occasions - using his wifi. I am really lost for ideas for what to do - I have uninstalled all the apps that don't work with the internet (facebook, twitter) and have always made sure that I have closed apps after using them, so that my iPod wouldn't run slow.
    My iPod has been like this for over a month now, help would be appreciated

    Do you have a blackberry data plan active. On your account? You need an active blackberry data plan to use the majority of data functions on your phone, even if you are connected to wifi 

  • TV don't work with OSX Server software?

    Everything worked great BEFORE I updated our MacMini Intel to OSX Server software, now iTunes can't find the recent found Apple TV. And therefore the connection is gone and the syncing don't work anymore.
    Any work-around or suggestions on how to solve this?
    Or do I have to revert to previus userversion of OSX to make it work again?
    Is there a limitation built into OSX Server software or is there maybe some kind of firewall / preferences etc that needs to be adjusted? (The built in firewall has been disconnected.)
    FYI:
    All apps are up to date. The Mac Mini + Apple TV is on my local network at home and I'm trying to make it my family's digital hub for all family-related media.
    MacBook Pro CD2 & X-servers Mac OS X (10.4.9)
    MacBook Pro CD2 & X-servers   Mac OS X (10.4.9)  

    1) I've not tried to reset ATV from scratch. But it works fine on other Mac's on the network (sharing).
    2) Security options, yes I belive so to. I've followed all instructions and opened all ports I've seen mentioned i apples Knowledge database / support. Still don't work. Maybe I've missed some ports...
    3) YES! It works fine sharing the MacMinis lib over the network.
    4) Today I also tried to reinstall iTunes. But no luck.
    Any mor suggestions anyone? Thx
    I really wanny solve this, otherwhise my ATV is pretty useless for me...

  • Getting schema validation working in Eclipse with Coherence 3.7.1.0

    Just wondered if anyone had got schema validation to work in Eclipse (3.5 - Galileo) for Coherence 3.7.1.0?
    The Coherence developer docs show that you should add sections like this:
    <pof-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.oracle.com/coherence/coherence-pof-config"
    xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-pof-config
    coherence-pof-config.xsd">
    However, if I use that "shortened" form (for cache, pof, etc. configs) Eclipse gives a warning "No grammar constraints (DTD or XML schema) detected for the document." and the schema validation fails to work (i.e. no "auto pop-ups" when entering content, and rubbish content is gladly accepted.)
    In Coherence 3.7.0, I'd used the following "extended" form (note the longer "schemaLocation") to get things working correctly:
    <pof-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.oracle.com/coherence/coherence-pof-config"
    xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-pof-config
    http://xmlns.oracle.com/coherence/coherence-pof-config/1.0/coherence-pof-config.xsd">
    Also note that entering the "http://xmlns.oracle.com/coherence/coherence-pof-config/1.0/coherence-pof-config.xsd" in a web browser opens the xsd, as you'd expect.
    Now...
    I'm looking at the PofAnnotationSerializer in 3.7.1.0 and the "auto indexing" option. The declaration in my pof file for it fails as the "class" (or fully-qualified java.lang.Class version) in the "init-params" section isn't valid. If I look at the xsd on the url above, this is indeed the case, that option does not appear.
    However, if I look at the POF xsd in the coherence.jar file for 3.7.1.0, the "class" option has been added, and has a newer 'version="1.1"' added to it's schema declaration. So I therefore tried to point my "extended" declaration to point to " http://xmlns.oracle.com/coherence/coherence-pof-config/1.1/coherence-pof-config.xsd", in order to get schema validation to work in Eclipse with this new schema. Unfortunately that url doesn't exist - you get a "Content Server Request Failed" error.
    So, I guess my question is, is there a way to get myself pointed at the 1.1 versions of the xsd's so I can have schema validation working in Ecliipse? Or is there another workaround (did a bit of Googling, but that mainly seemed to be people switching validation off to simply get rid of the error...)
    Cheers,
    Steve

    Cheers, Dave.
    I had in fact had a try at extracting the xsd and pointing to it directly, and that did indeed work (had to do this following the same steps shown below using an "entry" in the XML Catalog.)
    I had a look around at some of the other "entries" in Eclipse by default and noticed that they actually refer to xsd's directly within the jars, hence saving the extraction step and keeping screw-ups down to a minimum; a bit of playing around to get the syntax right and I finally managed to get it working.
    For those who are interested (NB. my Coherence 3.7.1.0 install is in a directory "c:\coherence3.7"), the steps are:
    In Eclipse, Go to Window->Preferences->XML->XML Catalog. Then create a "User Specified Entry".
    In the "Location", add (without the quotes): "jar:file:/C:/coherence3.7/coherence/lib/coherence.jar!/coherence-pof-config.xsd"
    In the "Key Type", add (without the quotes): "Namespace Name"
    In the "Key", add (without the quotes): "http://xmlns.oracle.com/coherence/coherence-pof-config"
    The schema validation now works fine. Eclipse shows no warnings/errors, and the auto-complete and validation are fully functional.
    Still, it would be nice to get the "1.1" urls updated to point to the schemas on the Oracle site, to avoid all our developers from having to make these changes (and of course avoid them pointing at an older, out-of-date local install of coherence.)
    Cheers,
    Steve

  • Help needed! Just want to cancel my year subscription. No answer from support via mail, noone answers when I call, support chat don't work.

    Help needed! Just want to cancel my year subscription. No answer from support via mail, noone answers when I call, support chat don't work.

    Hi there
    I'll pass your details to our Russian team and they'll contact you to assist further.
    Kind regards
    Bev

Maybe you are looking for

  • XML document could not be created because server memory is low( SCOM 2012 R2).

    Hi  I am facing below issue in the scom 2012 r2. please find the error below  On SCOM MS: Alert name :Data Warehouse relationship synchronization process failed to write data  Alert description :Data Warehouse relationship synchronization process fai

  • Deadlocks & Toplink in a cluster

    We need to cluster a very critical 7x24 app for both scalability and failover. Given that the performance of synchrous commits to a distributed cache (on a cluster) isn't recommended the only way to run a cluster of weblogic app servers seems to elim

  • Incoming Blocked Calls not appearing on my phone bill

    Hello -  I have recieved several blocked calls, however they don't appear on my phone bill. Why is that? How can i get a record that i received blocked calls? Best,  ML

  • Playing iPhone through a basic car sterio

    Hi, I travelled through Ireland recently and found I had to switch off the radio as the radio stations were boring. Normally we rent a car so we took CD's with us. However as we took my own car this time, which only has an old cassette player so we w

  • CREATE TYPE Alternative in TimesTen

    Hi we are using Timesten 11 version and as per the documentation, it doesn't support CREATE TYPE. So we are looking for alternatives to do it. Could you please provide your expert voice on this. Thanks a lot.