MXI resman crashes without graphics board under Linux

We use MXI-2 controller under Linux that works perfectly, but it crashes when we run machine without graphics board (PC for data acquisition).
We use RH 6.1 and no other boards in PC except netork (3COM FastEth).
Error message when trying to run resman is:
National Instruments VXI Resource Manager version 3.0
Resource Manager failed with error code -105:
"Unable to initialize NI-VXI driver.
Unable to open NI-VXI driver window."
We observed similar behavior also with GPIB under Linux - as son as graphics board is out, first simple ibwrt/ibrd command hangs even the whole PC ! and hard reset is necessary.

Thanks for the answer - well, after unplugging the VGA adapter (simple ATI Rage 128 series) the memory mapping is of course reconfigured - so please have a look if it looks like "dangerous". Files are attached.
Regards,
Peter
Attachments:
pci_novga.txt ‏3 KB
pci_vga.txt ‏3 KB

Similar Messages

  • How do I control DAQ boards under Linux using C (gcc)?

    I need to control multifunction DAQ boards using C (gcc) under Linux/x86. What drivers/packages do I need to use?

    Hi NEB,
    You will need to download DAQmxBase 1.3.1 found here:
    http://digital.ni.com/softlib.nsf/websearch/47D4C7DDD7C777C886256F230070A606?opendocument&node=132060_US
    The readme file contains information about what kernels it has been tested on.
    Thanks,
    Sal

  • Crash (SIGSEGV, SIGILL) of 32bit Hotspot under Linux x86_64 in VMware

    Hello!
    A reproducible crash of these 1.6 32 bit Java VMs is hinderung my application from starting when I want to start it under a x86_64 Linux kernel in VMware (Workstation and ESX):
    - java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) Client VM (build 10.0-b22, mixed mode, sharing)
    - java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) Server VM (build 10.0-b22, mixed mode)
    - java version "1.6.0_10-beta"
    Java(TM) SE Runtime Environment (build 1.6.0_10-beta-b23)
    Java HotSpot(TM) Client VM (build 11.0-b11, mixed mode, sharing)
    Tested using there kernels:
    - Linux debian 2.6.18-6-amd64 #1 SMP Sun Feb 10 17:50:19 UTC 2008 x86_64 GNU/Linux
    - Linux openSUSE 2.6.22.5-31-default #1 SMP 2007/09/21 22:29:00 UTC x86_64 x86_64 x86_64 GNU/Linux
    - Linux sles10-sp1-sdm 2.6.16.46-0.12-default #1 Thu May 17 14:00:09 UTC 2007 x86_64 x86_64 x86_64 GNU/Linux
    Sproradic but reproducible JVM (Hotspot) crashes while running a simple garbage collector stress application several times in parallel. hs_err files are generated each time. However, the "Problematic frame" address and library changes every time!
    Examples:
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode, sharing linux-x86)
    # Problematic frame:
    # C [libc.so.6+0xe4c9d] xdr_u_long+0xd
    VM state:not at safepoint (normal execution)
    # Java VM: Java HotSpot(TM) Server VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C 0xf7f56acb
    VM state:at safepoint (normal execution)
    # Java VM: Java HotSpot(TM) Server VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C [libnss_compat.so.2+0x2e16] nsscompat_getpwnam_r+0x46
    VM state:synchronizing (normal execution)
    The problem only appears using JDK or JRE 1.6 32 bit edition on a Linux 2.6 x86_64 kernel in VMware. Tests using real hardware, using a i686 kernel and using JDK / JRE 1.6 64 bit edition or JDK / JRE 1.5 (32 bit and 64 bit) could not reproduce the crashes.
    Questions:
    - Is there a general stability problem when starting the 32 bit Java VM under Linux 64?
    - Does anybody have similar problems with
    - Java VM 32bit under Linux 64?
    - Java VM in VMware (both ESX and Workstation)?
    Simple stress test application:
    public class GCStress {
    private static Thread[] threads;
    private static java.util.Random random = new java.util.Random();
    private static int maxBytes;
    private static int numThreads;
    public static void main(String[] args) {
    numThreads = Integer.parseInt(args[0]);
    maxBytes = Integer.parseInt(args[1]);
    threads = new Thread[numThreads];
    for (int x = 0; x < numThreads; x++) {
    threads[x] = new Thread(new Allocator(), "Thread_" + x);
    threads[x].start();
    while (true) {
    for (int x = 0; x < numThreads; x++) {
    if (!threads[x].isAlive()) {
    threads[x] = new Thread(new Allocator(), "Thread_r" + x);
    threads[x].start();
    try {
    Thread.sleep(500);
    } catch (InterruptedException e) {
    // ignore
    private static class Allocator implements Runnable {
    public void run() {
    while (true) {
    int tSize = random.nextInt(maxBytes);
    // System.out.println(Thread.currentThread().getName()
    // + " allocating " + tSize / 1024 + "kb");
    byte[] tMemFiller = new byte[tSize];
    try {
    Thread.sleep(random.nextInt(200));
    } catch (InterruptedException e) {
    ; // ignore
    }

    The program is started like this:
    ./jdk1.6.0_06/bin/java -server -Xms32m -Xmx256m GCStress 500 10485760
    And I run it usually 5 times in parallel. 1 time seems not to be enough (I should test that tonight).
    However, I've tested using several -XX: flags, but nothing really helped! (-XX:+UseParallelGC, -XX:-UseTLAB, -XX:+UseSpinning -XX-UseThreadPriorities, -XX:-UseBiasedLocking, -XX:-UseLargePages)
    About the lib: Every time, the content of hs_err is very different. I've also got
    hs_err_pid6201.log:# Problematic frame:
    hs_err_pid6201.log-# C [libc.so.6+0x5a261] IOwfile_seekoff+0x3b4
    hs_err_pid7116.log:# Problematic frame:
    hs_err_pid7116.log-# C 0x36343238
    hs_err_pid7137.log:# Problematic frame:
    hs_err_pid7137.log-# C 0xf7f17f67
    hs_err_pid7192.log:# Problematic frame:
    hs_err_pid7192.log-# C [libc.so.6+0x9d1ae]
    hs_err_pid7223.log:# Problematic frame:
    hs_err_pid7223.log-# C [libc.so.6+0xfef67] __register_frame_info+0xf
    hs_err_pid7232.log:# Problematic frame:
    hs_err_pid7232.log-# C [libc.so.6+0x109cdc]
    hs_err_pid7239.log:# Problematic frame:
    hs_err_pid7239.log-# C [libc.so.6+0x212b3] __newlocale+0x233
    hs_err_pid8569.log:# Problematic frame:
    hs_err_pid8569.log-# C [libc.so.6+0x562b9] IOgetline_info+0x52
    hs_err_pid8571.log:# Problematic frame:
    hs_err_pid8571.log-# C [libc.so.6+0x2b3] rtldglobal+0x2b3
    hs_err_pid8573.log:# Problematic frame:
    hs_err_pid8573.log-# C [libc.so.6+0x9b2b9]
    hs_err_pid8596.log:# Problematic frame:
    hs_err_pid8596.log-# C [libc.so.6+0x2e2d1]
    hs_err_pid8615.log:# Problematic frame:
    hs_err_pid8615.log-# C 0xf7e462b3
    hs_err_pid8635.log:# Problematic frame:
    hs_err_pid8635.log-# C [libc.so.6+0x9148c] glob64+0x40d
    hs_err_pid8642.log:# Problematic frame:
    hs_err_pid8642.log-# C [libc.so.6+0x722b9]
    hs_err_pid8667.log:# Problematic frame:
    hs_err_pid8667.log-# C [libc.so.6+0x67261]
    hs_err_pid9957.log:# Problematic frame:
    hs_err_pid9957.log-# C [libc.so.6+0xc5265]
    libnss is linked during execution:
    hs_err_pid7192.log:f7d77000-f7d7e000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7192.log:f7d7e000-f7d80000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7223.log:f7d6e000-f7d75000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7223.log:f7d75000-f7d77000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7232.log:f7db0000-f7db7000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7232.log:f7db7000-f7db9000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7239.log:f7dbc000-f7dc3000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7239.log:f7dc3000-f7dc5000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8569.log:f7d4c000-f7d53000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8569.log:f7d53000-f7d55000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8571.log:f7da2000-f7da9000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8571.log:f7da9000-f7dab000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8573.log:f7d07000-f7d0e000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8573.log:f7d0e000-f7d10000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8596.log:f7d74000-f7d7b000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8596.log:f7d7b000-f7d7d000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8615.log:f7de0000-f7de7000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8615.log:f7de7000-f7de9000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8635.log:f7d27000-f7d2e000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8635.log:f7d2e000-f7d30000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8642.log:f7d30000-f7d37000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8642.log:f7d37000-f7d39000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8667.log:f7d3c000-f7d43000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8667.log:f7d43000-f7d45000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid9957.log:f7d9a000-f7da1000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid9957.log:f7da1000-f7da3000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    Sample stack trace:
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x67f69b57, pid=9123, tid=3902569360
    # Java VM: Java HotSpot(TM) Server VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C 0x67f69b57
    # 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 (0x080a4c00): VMThread [stack: 0xe8947000,0xe89c8000] [id=9135]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x67f69b57
    Registers:
    EAX=0x67f69b57, EBX=0xf7f62ff4, ECX=0x000e89c6, EDX=0x00000000
    ESP=0xe89c6934, EBP=0xe89c6968, ESI=0x080a4c00, EDI=0x080df118
    EIP=0x67f69b57, CR2=0x67f69b57, EFLAGS=0x00010203
    Top of Stack: (sp=0xe89c6934)
    0xe89c6934: e89c6a10 eabdb800 eaaea220 eabdb838
    0xe89c6944: 0003c586 000023af 0657221a 0805848c
    0xe89c6954: eaaea220 eabdb838 080df0d4 080a4c00
    0xe89c6964: 00000001 e89c6998 064e51cb 080df118
    0xe89c6974: 08058350 e89c6998 0629cb5e 08058450
    0xe89c6984: 0003c586 e89c69d8 f0c719a8 e89c6ae0
    0xe89c6994: 00000001 e89c69b8 064e526c 080df0d4
    0xe89c69a4: 080a4c00 00000000 064f6ddb 080df478
    Instructions: (pc=0x67f69b57)
    0x67f69b47:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xb]
    Stack: [0xe8947000,0xe89c8000], sp=0xe89c6934, free space=510k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x67f69b57
    V [libjvm.so+0x4e51cb]
    V [libjvm.so+0x4e526c]
    V [libjvm.so+0x4f6cd8]
    V [libjvm.so+0x34c60d]
    V [libjvm.so+0x4dbe4c]
    V [libjvm.so+0x31722e]
    V [libjvm.so+0x5b83cf]
    V [libjvm.so+0x5ba5bb]
    V [libjvm.so+0x55a59d]
    V [libjvm.so+0x322be7]
    V [libjvm.so+0x2ce43b]
    V [libjvm.so+0x3227f7]
    V [libjvm.so+0x294845]
    V [libjvm.so+0x322b8c]
    V [libjvm.so+0x5edede]
    V [libjvm.so+0x5fb0c7]
    V [libjvm.so+0x5fa6dc]
    V [libjvm.so+0x5fa8b1]
    V [libjvm.so+0x5fa48f]
    V [libjvm.so+0x4fe219]
    C [libpthread.so.0+0x5192]
    VM_Operation (0xe371ee1c): GenCollectForAllocation, mode: safepoint, requested by thread 0x08217000
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x082f6400 JavaThread "Thread_528" [_thread_blocked, id=12818, stack(0xddd8a000,0xddddb000)]
    0x080db800 JavaThread "Thread_2" [_thread_blocked, id=9178, stack(0xe8547000,0xe8598000)]
    0x080da400 JavaThread "Thread_1" [_thread_blocked, id=9177, stack(0xe8598000,0xe85e9000)]
    0x080d9800 JavaThread "Thread_0" [_thread_blocked, id=9176, stack(0xe85e9000,0xe863a000)]
    0x080c9800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=9162, stack(0xe86bb000,0xe870c000)]
    0x080c8400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=9155, stack(0xe870c000,0xe878d000)]
    0x080bdc00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=9147, stack(0xe878d000,0xe880e000)]
    0x080bc800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9146, stack(0xe880e000,0xe885f000)]
    0x080a9000 JavaThread "Finalizer" daemon [_thread_blocked, id=9137, stack(0xe88a5000,0xe88f6000)]
    0x080a8000 JavaThread "Reference Handler" daemon [_thread_blocked, id=9136, stack(0xe88f6000,0xe8947000)]
    0x08057800 JavaThread "main" [_thread_blocked, id=9126, stack(0xf7da4000,0xf7df5000)]
    Other Threads:
    =>0x080a4c00 VMThread [stack: 0xe8947000,0xe89c8000] [id=9135]
    0x080cb400 WatcherThread [stack: 0xe863a000,0xe86bb000] [id=9174]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x08056388/0x080563b0] Threads_lock - owner thread: 0x080a4c00
    [0x08056848/0x08056860] Heap_lock - owner thread: 0x08217000
    Heap
    def new generation total 7296K, used 7273K [0xe8c40000, 0xe9420000, 0xe9a70000)
    eden space 6528K, 99% used [0xe8c40000, 0xe929c8f0, 0xe92a0000)
    from space 768K, 98% used [0xe92a0000, 0xe935dee8, 0xe9360000)
    to space 768K, 0% used [0xe9360000, 0xe9360068, 0xe9420000)
    tenured generation total 47472K, used 17838K [0xe9a70000, 0xec8cc000, 0xf0c40000)
    the space 47472K, 37% used [0xe9a70000, 0xeabdb838, 0xeabdba00, 0xec8cc000)
    compacting perm gen total 16384K, used 1648K [0xf0c40000, 0xf1c40000, 0xf4c40000)
    the space 16384K, 10% used [0xf0c40000, 0xf0ddc170, 0xf0ddc200, 0xf1c40000)
    No shared spaces configured.
    Dynamic libraries:
    06000000-0665d000 r-xp 00000000 08:02 543502 /usr/java/jdk1.6.0_06/jre/lib/i386/server/libjvm.so
    0665d000-066a1000 rwxp 0065c000 08:02 543502 /usr/java/jdk1.6.0_06/jre/lib/i386/server/libjvm.so
    066a1000-06ac3000 rwxp 066a1000 00:00 0
    08048000-08052000 r-xp 00000000 08:02 541414 /usr/java/jdk1.6.0_06/bin/java
    08052000-08053000 rwxp 00009000 08:02 541414 /usr/java/jdk1.6.0_06/bin/java
    08053000-083a8000 rwxp 08053000 00:00 0 [heap]
    ddd8a000-ddd8d000 ---p ddd8a000 00:00 0
    f7f87000-f7f88000 ---p f7f87000 00:00 0
    f7f88000-f7f89000 rwxp f7f88000 00:00 0
    f7f89000-f7fa3000 r-xp 00000000 08:02 1622023 /lib/ld-2.6.1.so
    f7fa3000-f7fa5000 rwxp 0001a000 08:02 1622023 /lib/ld-2.6.1.so
    fff5f000-fff68000 rwxp fff5f000 00:00 0 [stack]
    ffffe000-fffff000 r-xp ffffe000 00:00 0 [vdso]
    VM Arguments:
    jvm_args: -Xms32m -Xmx128m
    java_command: GCStress 2000 1048570
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/sbin:/usr/sbin:/usr/local/sbin:/root/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin
    LD_LIBRARY_PATH=/usr/java/jdk1.6.0_06/jre/lib/i386/server:/usr/java/jdk1.6.0_06/jre/lib/i386:/usr/java/jdk1.6.0_06/jre/../lib/i386
    SHELL=/bin/bash
    HOSTTYPE=x86_64
    OSTYPE=linux
    MACHTYPE=x86_64-suse-linux
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x5edbc0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x5edbc0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGXFSZ: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x4fe670], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:openSUSE 10.3 (X86-64)
    VERSION = 10.3
    uname:Linux 2.6.22.5-31-default #1 SMP 2007/09/21 22:29:00 UTC x86_64
    libc:glibc 2.6.1 NPTL 2.6.1
    rlimit: STACK 8192k, CORE 0k, NPROC 16384, NOFILE 8192, AS 3334080k
    load average:13.01 11.87 9.18
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 15 model 4 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2, sse3
    Memory: 4k page, physical 2063116k(334428k free), swap 2104472k(2104472k free)
    vm_info: Java HotSpot(TM) Server VM (10.0-b22) for linux-x86 JRE (1.6.0_06-b02), built on Mar 25 2008 00:26:44 by "java_re" with gcc 3.2.1-7a (J2SE release)
    time: Thu May 15 13:26:54 2008
    elapsed time: 365 seconds

  • Investigation on JVM crash without core dump (by JIT compiler)

    Hi, All
    I posted "JVM crash without core dump due to CompilerThread1" couple months ago.
    http://forum.java.sun.com/thread.jspa?threadID=5253434
    I would like show what we found, and ask couple questions
    1) The reason of JVM crash is "CompilerThread0/1 wanted to allocate more native memory and eventually exceeded the limit of 32-bit Linux (on Redhat, the limit of VIRT is 3G)
    2) After we lower the heap size (to reduce process size) and added process size monitor (track process size every minute) and JIT compilation log (-XX:+PrintCompilation),
    We found sometimes JVM process jumped more than 800M when compiling one method. with the following log
    Total time for which application threads were stopped: 0.1997400 seconds
    5828 xxx.xxx.SomeClass::someMethod (1507 bytes)
    5828 COMPILE SKIPPED: out of nodes during split (not retryable)
    549002.449: [GC [PSYoungGen: 517897K->28390K(551296K)] 942855K->453348K(1229952K), 0.0726350 secs]
    if we saw "COMPILE SKIPPED: out of nodes during split (not retryable)", the process size of JVM (VIRT/RES) always jumped 800M~1000M, and sometimes the memory get reverted in 30mins to couple hours, and sometimes it lasted forever. (so before we have larger footprint, this jump will kill JVM, right now, if the jump lasts forever, any more allocation on top of it also can kill jvm (much rare))
    3) This is definitely a bug of JVM, because
    it only happened on server mode, not client mode
    it is random, that method can be compiled success on other JVM or next restart (we have 20 JVMs)
    the method is not that complicate, like 100 lines, (bigger method gets compiled success)
    this only happen on PROD environment, we can't reproduce it locally or QA (the method is always compiled success)
    It mostly like under some condition (maybe node space is not enough), to compile that method will trigger JVM trying to allocate much more native memory.
    4) We are going to disable this method by ".hotspot_compiler" to fix it, right now we are using lower footprint, JVM dies rarely.
    +To understand more about this, I have some questions about JIT compiling+
    I saw same method are compiled more than once from JIT log, like the method caused our problem, it only happens on 2nd time compilation.
    Is it that JIT compiler will recompile the method with deeper optimization level some time, and more optimization it uses, the more memory it requires?
    (like gcc has -O2 -O3)
    Thanks!
    Neo

    Today, one JVM crashed again, with
    {Heap before gc invocations=4188:
    PSYoungGen      total 540864K, used 487958K [0x8ba50000, 0xb1250000, 0xb1250000)
      eden space 467328K, 100% used [0x8ba50000,0xa82b0000,0xa82b0000)
      from space 73536K, 28% used [0xa82b0000,0xa96d5850,0xaca80000)
      to   space 71680K, 0% used [0xacc50000,0xacc50000,0xb1250000)
    ParOldGen       total 1024000K, used 493477K [0x4d250000, 0x8ba50000, 0x8ba50000)
      object space 1024000K, 48% used [0x4d250000,0x6b439610,0x8ba50000)
    PSPermGen       total 101760K, used 101240K [0x2d250000, 0x335b0000, 0x4d250000)
      object space 101760K, 99% used [0x2d250000,0x3352e1f8,0x335b0000)
    405290.711: [GC [PSYoungGen: 487958K->17397K(544192K)] 981435K->518248K(1568192K), 0.0769350 secs]
    Heap after gc invocations=4188:
    PSYoungGen total 544192K, used 17397K [0x8ba50000, 0xb1250000, 0xb1250000)
    eden space 472512K, 0% used [0x8ba50000,0x8ba50000,0xa87c0000)
    from space 71680K, 24% used [0xacc50000,0xadd4d480,0xb1250000)
    to space 70208K, 0% used [0xa87c0000,0xa87c0000,0xacc50000)
    ParOldGen total 1024000K, used 500851K [0x4d250000, 0x8ba50000, 0x8ba50000)
    object space 1024000K, 48% used [0x4d250000,0x6bb6cf70,0x8ba50000)
    PSPermGen total 101760K, used 101240K [0x2d250000, 0x335b0000, 0x4d250000)
    object space 101760K, 99% used [0x2d250000,0x3352e1f8,0x335b0000)
    Total time for which application threads were stopped: 0.0779620 seconds
    Exception in thread "CompilerThread1" java.lang.OutOfMemoryError: requested 4522768 bytes for Chunk::new. Out of swap space?

  • I would like to change the colour of bars in a chart without losing the underlying default texture associated with my chosen theme. None of the 3D textured fills offered in "Chart Colors" match the textured fill of the theme. Any suggestions?

    I would like to change the colour of bars in a chart without losing the underlying default texture associated with my chosen theme. None of the 3D textured fills offered in "Chart Colors" match the textured fill of the theme. Any suggestions?

    Thanks Gary, but no, that does not work. First of all, I can't select each bar individually. When I click on one bar, all three bars are selected.
    When I use "inspector > graphic" I have 5 fill options: none, color, gradient, image, tinted image. The default selection for the theme I'm using is image. What I would like to use for my charts is the same image that this theme uses for table headers. It has the same texture as the chart, but a different colour. Using anything but image or tinted image removes the texture from the fill.
    I have found I can do one of two things. I can select tinted image from the fill selections in "inspector > graphic" or I can select 2D Image Fills from "inspector > chart > chart colors". The first choice does not allow me to match the table header colour because it only allows me to apply a tint to the existing colour and adjust its opacity. The existing colour has too much influence on the fill, so I can't find an RGB adjustment that will match the table header colour. The image selections from "inspector > chart > chart colors" do not quite match the colour or the texture. Again, I can try to tint the image, but I still can't get it to match and the texture is not the same anyway.
    The image I want to use obviously exists in the software as it is an attribute of the theme, but for some reason is inaccessible. The other angle I have tried is to edit the theme, but I can't figure out how to do that either.

  • No sound on Audigy 2 ZS under Win XP, under Linux

    Hi,
    I have an Audigy 2 ZS installed on my AMD 64 3500+, Board Asus A8N-SLI Deluxe (BIOS 0). I first installed Win XP, Sound drivers and everything worked fine, then installed SUSE Linux 9.3 (x64-Version), and everything was fine too. After a while, under Win XP the sound card stopped working. I don't remember what I changed in my config, but I couldn't get it working again under XP. Under Linux everything is still ok.
    I even reinstalled XP, and still there's no sound. Strange thing is, that the drivers install perfectly and everything on the system seems to be ok, but there's no sound neither on digital-out nor analog.
    Any ideas would be greatly appreciated.

    I tried both, disabling, enabling.
    Currently there's a digital sound system with external decoder connected to it (Creative Soundworks DTT3500 Digital), as well a 5. analog Headphone, so all jacks execept line in are connected. Headphones and sound system is ok, I tested that on other PCs.

  • Analog Triggering and Interrupt generation on the PCIe-6320 under Linux

    We would like to use the analog triggering functions of the PCIe-6320 under Linux to time tag external events.
    I have no experience with the MH DDK but have been told this is what we would need to implement the functions we want. We plan on using Fedora Linux and we are targetting kernel 2.6.31 with the PREEMPT_RT patch applied. We may consider slightly more recent kernel versions. The PREEMPT_RT patch is used to greatly improve determinism in the system and get real-time responses to some external events.
    Here is what we wish to do in more details:
    We wish to route at least two analog inputs to the comparator, then route the output of the comparator to a digital input which in turn would create a PCIe interrupt. The interrupt software handler would than time tag that event for our application purposes. We need the comparator threshold to be software programmable in level and slope. We are also interested in using the Watchdog Timer feature of the board.
    Our application is written in C/C++.
    Would the above be feasible? Please provide comments and instructions how we should address our requirement.
    Thanks!

    Patof wrote:
    I am not familiar with the MHDDK. I would like to have an idea of the effort required to implement the functions I have described using MHDDK on Linux. Like I mentionned, we plan on using Linux kernel 2.6.31 with the PREEMPT_RT patch. Could you provide comments on that matter? I need to evaluate the amount of time I will need to spend to deploy and use MHDDK for the PCIe-6320.
    There are two factors to consider when writing a driver for your specific application:
    Using the deterministic kernel API calls
    Writing to the device registers to
    Control the watchdog timer
    Configure the analog comparator
    Manage the analog subsystem state as trigger events occur
    Handle device interrupts
    The MHDDK for X Series offers the following behavior out-of-the-tarball:
    A Linux kernel module using the standanrd kernel and PCI subsystem calls
    Mapping device registers to user-mode for access
    Demonstrating/documenting how to
    Control the watchdog timer (dioex6.cpp)
    Manage the analog subsystem state as trigger events occur (aiex2.cpp, aiex4.cpp)
    Handle device interrupts (reference manual only)
    There are two notably missing pieces and one item to consider:
    Missing: deterministic kernel API calls. If you decide to use the nirlpk module, you would need to change it from the standard interfaces to the deterministic variants.
    Missing: configuring the analog comparator. You will need to implement this with additional insight from this discussion board.
    Consider: if your application requires device access from kernel-mode only, you would not be able to use the MHDDK's C++ classes that perform device programming but would need to implement register programming in C.
    To estimate the time for these three, here are my recommendations:
    Review the nirlpk.c source file to understand how device access and DMA buffers are implemented and mapped to the user-mode application.
    Beware that operation-specific programming help (as you would need for analog triggering) typically requires two weeks for a complete response.
    Review the ChipObjects in the MHDDK distribution to understand how register addresses, widths, and bit fields affect device programming.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • Too many resources used under Linux

    I have tested sun jvm under linux red-dat 6.2
    and 7.1 (listed by Sun as official platform supported)
    The JVM I test was from 1.3.0 to the 1.4.1
    I have written a simple application server that
    runs java application starting a new JVM.
    When the java application runs (with the -server or
    -hotspot option) I see that 10 java process are
    istantiated. (10 JVM)
    This is a real problem because for 4 users that runs 4
    applications there are 40 JVM running
    (each one allocates about 20 Mb of memory)
    and the system became very slow.
    With the -classic option the situation is better: only 1 JVM
    for application is started, (the application is the same, I
    have change only the -server option with -classic)
    but JVM seems to be less stable: I have a lot of segmentation
    fault errors. (with core dump)
    With the new distribution of Sun JVM (1.4.1) the -classic option
    is no longer supported.
    Does anyone knows if is there a way to have only one JVM
    for application? (-classic does not works well)
    Is there others JVM for linux more stable instead of the Sun one?
    PS: I have tested the same code under win/2000 using JVM 1.3.1_03
    and the -classic option. All goes well (the same application):
    I haver only 1 thread for application without jvm runtime error.
    Now my doubt is: does Sun belive in the Linux Word?
    JVM for Windows is much more stable!!!
    Thank you in advanced and best regards.

    I am assuming that you believe that there are 10 processes because that is what ps shows. However on Linux, each thread in a java program shows up in ps as a separate process. The memory for each "ps process" corresponding to a java thread is shared among all the threads of the JVM. Therefore if you see 10 processes with 20MB each you are not using 200MB, just 20.
    If you are running 4 JVMs then you would be using 40MB not 800 as shown in ps.
    I think Sun's JVM for linux is quite good (as I use it every day). If you need to run so many JVMs you should invest in more memory.
    BTW, How much memory is installed in your system?

  • How can I use the instrument toolbox in MATLAB 6.1 to contol the PCI-GPIB card under Linux?

    I'm trying to use the PCI-GPIB controller to control lab equipment through MATLAB 6.1 (R12.1) under Linux. MATLAB's instrument toolbox seems to integrate with NI's board, but the MATLAB documentation says it requires the installation of a driver. I've downloaded the linux gpib driver, and I'm able to run the associated utilities (ibconf, ibic, ibsta), but MATLAB cannot interface to it. For example,
    >> g=gpib('ni',0,1)
    ??? Error using ==> gpib/gpib
    The specified VENDOR adaptor could not be found.
    Where can I find a MATLAB driver and how can I install it?
    Thanks,
    Richard

    Hello-
    The knowledge base: "Can Matlab for Windows Call the National Instruments GPIB Driver?" Also applies to this question as well. This article is very extensive. Try searching on ni.com for "+matlab +gpib" for more details.
    Randy Solomonson
    Application Engineer
    National Instruments

  • JTable rendering problem in JRE 1.6.0.10 under Linux

    I've encountered a bizarre issue using JTable. I've got a 3x10 JTable of Strings, values in which I change from within the program (no user input). After every update the value in the first column gets superimposed on the top of the previous one, so they are both visible, but totally unreadable (they interlace).
    I'm using Linux, and it only happens under jre 1.6.0.10. When I switch to 1.5.0.16 it works fine. I also noticed, that if I set the value to null in the first column and then set it to the new value it works fine. However, if I do it simply like that:
    table.setValueAt(null, 1, 0);
    table.setValueAt(newValue, 1, 0);it doesn't work. I need to re-set it to null on one user's click (it triggers the update) and only change it on the following click. Am I reporting a bug here, or is it a known issue with some proper solution?
    Thanks

    There are some crazy things, I can't explain...
    1) Here is my [sample project|http://vlkv.storm-soft.kiev.ua/_mywiki/images/6/6f/JavaApplication1.tar.gz]. I've created it with NetBeans 6.5 and jdk 1.6.0_11.
    2) there are directories dist_windows, dist_linux with jars, created under Windows and Linux (same version JDK everywhere). You may compare both JavaApplication1.jar files with some diff tool (such as WinMerge) and you can see that these jars are slightly different. WHY?
    3) Run my sample
    java -jar JavaApplication1.jarpress the button and scroll up and down JTable. Under Windows everything is ok. But under Linux I have the subj bug with BOTH dist_windows/JavaApplication1.jar and dist_linux/JavaApplication1.jar !!!
    4) Start NetBeans 6.5 and open the project. Run the project from inside NetBeans on Linux. Then I see that my java program runs perfectly, without any bugs!!!
    This command
    ps fu -C javaproduces this output:
    vlkv 8778 1.0 2.8 217084 22408 ? Sl 14:01 0:00 \_ /usr/java/jdk1.6.0_11/bin/java -classpath /home/vlkv/NetBeansProjects/JavaApplication1/build/classes:/home/vlkv/NetBeansProjects/JavaApplication1/src NewJFrame
    But if I run NewJFrame without NetBeans like this (copy/paste command):
    /usr/java/jdk1.6.0_11/bin/java -classpath /home/vlkv/NetBeansProjects/JavaApplication1/build/classes:/home/vlkv/NetBeansProjects/JavaApplication1/src NewJFrame
    This bug returns!!! WHY UNDER NETBEANS IT'S OKAY?
    Where are the java experts to help us, please?
    PS: I've found a topic about this problem, unfortunately not answered, here .

  • Different behaviour of file vis under linux and microsoft

    I am porting software written under Windows labview to Linux Labview (6.1). When using the Open/Create/Replace vi in windows if I use a pattern of "*.abc" and enter "123" in the dialogue box a file called "123.abc" will be created which is what I would expect. The same operation under Linux will create a file called "123" without the extension. Is this normal and is there a way of making the linux version behave in the same way as the windows version?

    Sorry about the delay - vacation.
    There appears to be no check box under Linux to use native file dialogs although it does indeed exist under windows. In fact the linux version does use linux file dialogs by default. It seems that the only options are to force the windows version to behave like the the linux version - which is counter intuitive, or write a new file dialog vi for linux.

  • Cd printing under Linux (Pixma MG5350)

    Hi all,
    I've bought a Canon Pixma MG5350 just a few weeks ago.
    It works great but this week I've tried to print with the CD-tray.
    I have made a nice label using Glabels, and set the printing configuration as followed:
    Paper tray: CD tray
    Paper size: CD 5-inch
    Resolution: 600x600 DPI high cd
    Then the printer indicated that I need to push the tray in the slot and press OK. After that it will ask the same thing again, again and again without doing much. I've tried every single adjustment if it comes to inserting the cd-tray but the machine just wont insert it.
    Hopefully some of you can give me advise on this one. Probably I am overlooking something but don't know what. Can it be that this feature is not working under Linux? (hope it will)
    Operating details:
    Kubuntu 13.04 64bit
    Printer driver: Canon Pixma MG5300 - CUPS+Gutenprint v5.2.9
    Kind regards,
    Jurgen

    Great, thanks for the quick reply. I will keep this post open for now and at the same time fill in a form on the canon site for Europe. If I understand what is going wrong I will post it here as well.
    jurgen

  • Forms compilation Errors under Linux

    Hello,
    I have a main form called Tbdoctrk.fmb.
    This forms compiles and runs perfectly through Oracle 9i iDS.
    When transfering the fmb file under Linux, and attempting to recompile using the f90genm.sh utility, I get the following compilation errors:
    FRM-18108: Failed to load the following objects.
    FRM-30436: Parent window not specified for canvas.View Canvas H_TOOLBAR
    FRM-30041: Position of item places it off of canvas.
    Item: BUTTON_HELP
    Block: VARIABLE
    Form: TBDOCTRK
    FRM: Unable to adjust form for output.
    ====
    I noticed that most of the object that failed to load (1 data block object, 1 canvas and a number of property classes and visual attributes) are contained in a file called TOOLBAR.fmb.
    The TOOLBAR.fmb file compiles without errors under Linux/WIndows + is located in the same folder as the Tbdoctrk.fmb file.
    1) How can I resolve this issue ?
    PT
    PS: I tried renaming the fmb files to upper/lower case without success.

    Hello,
    My main form called Tbdoctrk.fmb in turn calls a form called Pre_bord.fmb in a Program Unit.
    Most but not all Class and Value Attributes are included in a file called toolbar.fmb. I did not find any specific reference to the toolbar.fmb file.
    However, at compile time, I find that those objects are not loaded.
    1) In what part of the main form Tbdoctrk.fmb should I find any such reference to the toolbar.fmb file ?
    2) How should I create those symbolic links under Linux ?
    PT

  • RS482M4 boards' SATA, Linux support (SB450 == SB400?)

    Hello. Regarding RS482M4-models, is the SATA part of SB450 exactly the same it used to be in SB400? I'm mainly interested in it as I know for certain that SB400 is supported in Linux, from kernel version 2.6.11 onwards, but I'm not sure about SB450's SATA since it's still not AHCI-compliant which would automatically mean support.
    If there's anyone there yet with a SB450 board and Linux: even if you don't use SATA, could you copy-paste  lspci and lspci -n -commands' outputs? It would tell for certain the devices and PCI id's, which I could then compare to what's supported in the kernel.
    Update: Also, if there's a Windows user with the needed knowledge to dig this information, help is welcome.

    The SATA is SiL based ATI 437A & 4379.
    The SATA fails to detect in Fedora Core 3.
    The SATA works fine in Fedora Core 4, presumably including the raid functions (not verified), but the graphics falls back on the VESA generic driver.
    In the upcoming Fedora Core 5 release with X.Org 7 the graphics will be supported natively by the Radeon driver.
    Not yet sure if the sound works. Haven't heard anything, but I also haven't verified the connectors..

  • MacBook Pro crashes without apparent reason

    Hi,
    I hope that someone can help me with this. I have a 13" MacBook Pro from 2012 and it's the third time this month that it crashes without any apparent reason, the last report after the reboot says all this:
    Anonymous UUID:
    1BA8D1ED-356E-320D-ADF7-2AA8BFB27E18
    Sun Aug 31 14:01:05 2014
    panic(cpu 0 caller 0xffffff80254dc24e): Kernel trap at 0xffffff8025851907, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x00000000a059c00c, CR3: 0x0000000082a78087, CR4: 0x00000000001606e0
    RAX: 0xff000000ff000000, RBX: 0x000000000000000b, RCX: 0xffffff8025b034d0, RDX: 0xffffff8039300588
    RSP: 0xffffff812f7cba10, RBP: 0xffffff812f7cba40, RSI: 0xffffff8025b034d0, RDI: 0xffffff80392ed680
    R8:  0x0000000000002584, R9:  0x0000000000000002, R10: 0x000000000000003e, R11: 0xffffff8043ded03e
    R12: 0xffffff8025b03501, R13: 0x00000000000000b0, R14: 0xffffff8025b034d0, R15: 0xffffff80379e79c0
    RFL: 0x0000000000010202, RIP: 0xffffff8025851907, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000000a059c00c, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff810750bc50 : 0xffffff8025422f79
    0xffffff810750bcd0 : 0xffffff80254dc24e
    0xffffff810750bea0 : 0xffffff80254f3746
    0xffffff810750bec0 : 0xffffff8025851907
    0xffffff812f7cba40 : 0xffffff8025851b59
    0xffffff812f7cba70 : 0xffffff802588b94f
    0xffffff812f7cba90 : 0xffffff80258965b0
    0xffffff812f7cbb00 : 0xffffff8025896379
    0xffffff812f7cbb40 : 0xffffff802584d85e
    0xffffff812f7cbcd0 : 0xffffff802584d996
    0xffffff812f7cbd00 : 0xffffff8025891255
    0xffffff812f7cbd70 : 0xffffff8025896a34
    0xffffff812f7cbd90 : 0xffffff80258cbe61
    0xffffff812f7cbdc0 : 0xffffff80254b1d81
    0xffffff812f7cbe00 : 0xffffff8025426bc1
    0xffffff812f7cbe30 : 0xffffff80254139c5
    0xffffff812f7cbea0 : 0xffffff802541e013
    0xffffff812f7cbf20 : 0xffffff80254c9a4d
    0xffffff812f7cbfb0 : 0xffffff80254f3d18
    BSD process name corresponding to current thread: GoogleSoftwareUp
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:
    0x0000000025200000
    Kernel text base: 0xffffff8025400000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 10635823305012
    last loaded kext at 7245146947926: com.apple.driver.AppleIntelMCEReporter    104 (addr 0xffffff7fa7386000, size 49152)
    last unloaded kext at 7379076891118: com.apple.driver.AppleIntelMCEReporter    104 (addr 0xffffff7fa7386000, size 32768)
    loaded kexts:
    com.Cycling74.driver.Soundflower    1.6.6
    org.virtualbox.kext.VBoxUSB    4.2.6
    org.virtualbox.kext.VBoxDrv    4.2.6
    com.apple.filesystems.smbfs    2.0.2
    com.apple.driver.AGPM    100.14.28
    com.apple.driver.X86PlatformShim    1.0.0
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleMikeyHIDDriver    124
    com.apple.driver.AudioAUUC    1.60
    com.apple.driver.AppleHDA    2.6.3f4
    com.apple.driver.AppleUpstreamUserClient    3.5.13
    com.apple.driver.AppleMikeyDriver    2.6.3f4
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.2.6f1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.2.6f1
    com.apple.driver.AppleIntelHD4000Graphics    8.2.8
    com.apple.driver.AppleThunderboltIP    1.1.2
    com.apple.driver.AppleLPC    1.7.0
    com.apple.driver.AppleSMCPDRC    1.0.0
    com.apple.driver.AppleSMCLMU    2.0.4d1
    com.apple.driver.AppleBacklight    170.3.5
    com.apple.driver.AppleMCCSControl    1.2.5
    com.apple.driver.AppleIntelFramebufferCapri    8.2.8
    com.apple.driver.SMCMotionSensor    3.0.4d1
    com.apple.driver.AppleUSBTCButtons    240.2
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleIRController    325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.iokit.SCSITaskUserClient    3.6.6
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.6.0
    com.apple.driver.AppleSDXC    1.5.2
    com.apple.iokit.AppleBCM5701Ethernet    3.8.1b2
    com.apple.driver.AppleUSBHub    683.4.0
    com.apple.driver.AppleFWOHCI    5.0.2
    com.apple.driver.AppleAHCIPort    3.0.5
    com.apple.driver.AirPort.Brcm4331    700.20.22
    com.apple.driver.AppleUSBXHCI    683.4.0
    com.apple.driver.AppleUSBEHCI    660.4.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleACPIButtons    2.0
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    2.0
    com.apple.driver.AppleAPIC    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient    217.92.1
    com.apple.nke.applicationfirewall    153
    com.apple.security.quarantine    3
    com.apple.driver.AppleIntelCPUPowerManagement    217.92.1
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.6.3f4
    com.apple.vecLib.kext    1.0.0
    com.apple.iokit.IOAudioFamily    1.9.7fc2
    com.apple.kext.OSvKernDSPLib    1.14
    com.apple.iokit.IOSerialFamily    10.0.7
    com.apple.iokit.IOBluetoothFamily    4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.2.6f1
    com.apple.iokit.IOSurface    91.1
    com.apple.driver.X86PlatformPlugin    1.0.0
    com.apple.driver.IOPlatformPluginFamily    5.7.1d6
    com.apple.driver.AppleHDAController    2.6.3f4
    com.apple.iokit.IOHDAFamily    2.6.3f4
    com.apple.iokit.IOFireWireIP    2.2.6
    com.apple.driver.AppleSMBusPCI    1.0.12d1
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.driver.AppleSMBusController    1.0.12d1
    com.apple.iokit.IOAcceleratorFamily2    98.22
    com.apple.AppleGraphicsDeviceControl    3.6.22
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.driver.AppleSMC    3.1.8
    com.apple.driver.AppleUSBMultitouch    240.9
    com.apple.iokit.IOUSBHIDDriver    660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter    3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily    3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.4.5
    com.apple.driver.AppleUSBMergeNub    650.4.0
    com.apple.driver.AppleUSBComposite    656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.6.6
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.6.6
    com.apple.iokit.IOEthernetAVBController    1.0.3b4
    com.apple.driver.mDNSOffloadUserClient    1.0.1b5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IOUSBUserClient    660.4.2
    com.apple.driver.AppleThunderboltNHI    2.0.1
    com.apple.iokit.IOThunderboltFamily    3.3.1
    com.apple.iokit.IOAHCIFamily    2.6.5
    com.apple.iokit.IO80211Family    640.36
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOUSBFamily    683.4.0
    com.apple.driver.AppleEFINVRAM    2.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOHIDFamily    2.0.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    278.11.1
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.DiskImages    371.1
    com.apple.iokit.IOStorageFamily    1.9
    com.apple.iokit.IOReportFamily    23
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    2.0
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    com.apple.kec.pthread    1
    No se ha podido recopilar la información de la configuración del sistema.Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547575A9E384, 750,16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1
    Thank you!

    Any or all of the following third-party system modifications may be contributing to the problem:
    Soundflower
    Virtualbox
    If the panic is recurrent, check that all are up to date, and if they are, uninstall them, one at a time, according to the developers' instructions, to see whether you can determine which is at fault. A conflict between modifications may be involved. Restart the computer and test after each uninstallation.
    Back up all data before making any changes.

Maybe you are looking for