What is the error report thing

evertime i try to get on itunes, a box pops up and says itunes has encountered a problem and needs to close. We are sorry for the inconenience. and then it gives me the option to send the error report or not to send. i tried both and nothing happens. can someone please help me out.
sony   Windows XP   laptop

Error reporting is a Windows feature that allows you to send a message to Microsoft whenever a program becomes unresponsive, crashes, or in general doesn't work the way it's supposed to work. Supposedly Microsoft evaluates these reports and releases bug fixes as necessary for Windows customers.
It doesn't have anything to do directly with iTunes and won't help fix the underlying problem you're experiencing. Others are also having difficulty launching iTunes--you can search these forums for your particular problem/error message (do you get an error reference number?) and then see if any of the suggested fixes work.
On Edit: After you send the error report to Microsoft you'll get a box with a link in it that may give you some useful tips from Microsoft on how to fix the problem. Make sure you click on the hyperlink in the "error report received" box and see what Microsoft suggests.

Similar Messages

  • JNI - How to use the error reporting mechanism?

    I've developed a C++ DLL which is loaded from a commercial Win32 application (not written by me) as a plug-in for external calculations. On its initialization the C++ DLL launches the Java VM via the JNI invocation interface. When the DLL functions are called by the application, they forward the calls to Java objects inside the Java VM, again via JNI invocation interface.
    This works well, but I have encountered a weird error.
    From Java I open a JFrame containing a JTextArea as small console for debug output messages. If I turn output to this debug console off (my printToConsole routine checks whether a boolean flag is set), the string concatenation operator may lead to a crash of the Java VM.
    For example, if in one of the Java functions called from the
    DLL via JNI invocation interface the following is the first statement,
    it leads to a crash of the Java VM and the application that loaded the C++ proxy DLL.
    String test=""+Math.random(); // String test not used later
    Interestingly, if I comment this statement out, the Java code works fine WITHOUT any crash. I've already thought about potential races and synchronization issues in my code, but I don't see where this is the case. And the string concatenation error fails as well, if I insert sleep() statements in front of it and at other places in the code. However, if I turn on log messages printed to my JFrame debug console (containing a JTextArea), the String concatenation works without problems.
    So maybe the JNI interface has a bug and affects the Java VM; I don't see where my JNI code is wrong.
    One problem is that I do not get any stdout output, as the C++ proxy DLL is loaded by the Windows application, even if I start the Windows application from the DOS command line (under Windows).
    Does anyone know how to use the error reporting mechanism?
    http://java.sun.com/j2se/1.4.2/docs/guide/vm/error-handling.html
    Is it possible that the JVM, when it crashes, writes debug information about the crash into a file instead of stdout/stderr?
    My C++ proxy DLL was compiled in debug mode, but the commercial application (which loaded the DLL) is very likely not.
    I do not know hot to find the reason why the String concatenation fails inside the Java function called from the C++ DLL via JNI.

    Yes, I've initially thought about errors in the C++ code too. But the C++ code is actually very simple and short. It doesn't allocate anything on the C++ side. It allocates a couple of ByteBuffers inside the Java VM however via JNI invocation interface calls of env->NewDirectByteBuffer(). The native memory regions accessed via the ByteBuffers are allocated not by my own C++ code, but by the program that calls my DLL (the program is Metastock).
    The interesting thing is that everything works fine if output to my debug console is enabled, which means that in the Java print routine getConsoleLoggingState() returns true and text is appended to the jTextArea.
    static synchronized void print(String str)
    { MetaStockMonitor mMon=getInstance();
    if ( mMon.getFileLoggingState() && mMon.logFileWriter!=null) {
    mMon.logFileWriter.print(str);
    mMon.logFileWriter.flush();
    if ( mMon.getConsoleLoggingState() ) {
    mMon.jTextArea1.append(str);
    Only if output to the JTextArea is turned off (ie. getConsoleLoggingState()==false), the crash happens when the FIRST statement in the Java routine called via JNI invocation interface is a (useless) String concatenation operation, as described above.
    String test=""+Math.random(); // String test not used later
    Moreover, the crash happens BEFORE the allocated ByteBuffer objects are accessed in the Java code. But again, if console output is turned on, it works stable. If console output is turned off, it works when the (useless) String concatenation operation is removed in the Java routine called from C++.
    I've already thought about potential races (regarding multiple threads), but this can be ruled out in my case. It almost appears as if the JVM can have problems when called by the invocation interface (I tested it with Java 1.4.2 b28).
    All the calls between C++ and Java go ALWAYS in the direction from C++ code to Java. Unfortunately, there is no special JRE version with extensive logging capabilities to facilitate debugging. And the problem is not easily reproducible either.
    JNIEnv* JNI_GetEnv()
    JNIEnv *env;
    cached_jvm->AttachCurrentThread((void**)&env,NULL);
    fprintf(logfile,"env=%i\n",env);
    fflush(logfile);
    return env;
    // function called by Metastock's MSX plug-in interface
    BOOL __stdcall createIndEngine (const MSXDataRec *a_psDataRec,
    const MSXDataInfoRecArgsArray *a_psDataInfoArgs,
    const MSXNumericArgsArray *a_psNumericArgs,
    const MSXStringArgsArray *a_psStringArgs,
    const MSXCustomArgsArray *a_psCustomArgs,
    MSXResultRec *a_psResultRec)
    a_psResultRec->psResultArray->iFirstValid=0;
    a_psResultRec->psResultArray->iLastValid=-1;
    jthrowable ex;
    jmethodID mid;
    JNIEnv* env=JNI_GetEnv();
    jobject chart=getChart(env, a_psDataRec);
    if ( chart==NULL) {
    return MSX_ERROR;
    jobject getChart (JNIEnv* env, const MSXDataRec *a_psDataRec)
    jthrowable ex;
    jmethodID mid;
    int closeFirstValid, closeLastValid;
    closeFirstValid=a_psDataRec->sClose.iFirstValid;
    closeLastValid=a_psDataRec->sClose.iLastValid;
    long firstDate, firstTime;
    if (closeFirstValid>=1 && closeFirstValid<=closeLastValid) {
    firstDate = a_psDataRec->psDate[closeFirstValid].lDate;
    firstTime = a_psDataRec->psDate[closeFirstValid].lTime;
    } else {
    firstDate=0;
    firstTime=0;
    jclass chartFactoryClass = env->FindClass("wschwendt/metastock/msx/ChartFactory");
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot find class ChartFactory\n");
    printSBufViaJava(sbuf);
    return NULL;
    mid = env->GetStaticMethodID(chartFactoryClass, "getInstance", "()Lwschwendt/metastock/msx/ChartFactory;");
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot find method ID for ChartFactory.getInstance()\n");
    printSBufViaJava(sbuf);
    return NULL;
    jobject chartFactory=env->CallStaticObjectMethod(chartFactoryClass, mid);
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Exception while calling ChartFactory.getInstance()");
    printSBufViaJava(sbuf);
    return NULL;
    mid = env->GetMethodID(chartFactoryClass, "getChartID", "(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;IIIIIII)F");
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot find method ID for ChartFactory.getChartID()\n");
    printSBufViaJava(sbuf);
    return NULL;
    jobject symbolBuf=env->NewDirectByteBuffer(a_psDataRec->pszSymbol, strlen(a_psDataRec->pszSymbol) );
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot allocate symbolBuf\n");
    printSBufViaJava(sbuf);
    return NULL;
    jobject securityNameBuf=env->NewDirectByteBuffer(a_psDataRec->pszSecurityName, strlen(a_psDataRec->pszSecurityName) );
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot allocate securityNameBuf\n");
    printSBufViaJava(sbuf);
    return NULL;
    jobject securityPathBuf=env->NewDirectByteBuffer(a_psDataRec->pszSecurityPath, strlen(a_psDataRec->pszSecurityPath) );
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot allocate securityPathBuf\n");
    printSBufViaJava(sbuf);
    return NULL;
    jobject securityOnlineSourceBuf=env->NewDirectByteBuffer(a_psDataRec->pszOnlineSource, strlen(a_psDataRec->pszOnlineSource) );
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Cannot allocate onlineSourceBuf\n");
    printSBufViaJava(sbuf);
    return NULL;
    // Java Function call leads to crash, if console output is turned off and
    // the first statement in the Java routine is a (useless) string concatenation.
    // Otherwise it works stable.
    jfloat chartID=env->CallFloatMethod(chartFactory, mid, securityNameBuf, symbolBuf,
    securityPathBuf, securityOnlineSourceBuf, (jint)(a_psDataRec->iPeriod),
    (jint)(a_psDataRec->iInterval), (jint)(a_psDataRec->iStartTime),
    (jint)(a_psDataRec->iEndTime), (jint)(a_psDataRec->iSymbolType),
    (jint)firstDate, (jint)firstTime );
    if (ex= env->ExceptionOccurred() ) {
    env->ExceptionDescribe();
    env->ExceptionClear();
    sprintf(sbuf, "DLL: Exception while calling ChartFactory.getChartID()");
    printSBufViaJava(sbuf);
    return NULL;

  • What Speed could i get & what are the errors

    Hi Everyone.
       I have just joined B.T & yesterday was my last day of the 10 day period.
       Bin looking at my speed it hasnt gone up alot but i keep getting all these errors on the hub info so i would like to ask what are the errors please & does the speed look about right for me thanks Nick..
     Short time for connection as B.T reset the Hub its a v3.0a
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    1 days, 06:08:58
    Downstream:
    4.931 Mbps
    Upstream:
    1011 Kbps
    ADSL Settings
    VPI/VCI:
    0/38
    Type:
    PPPoA
    Modulation:
    G.992.3 Annex A
    Latency type:
    Interleaved
    Noise margin (Down/Up):
    5.5 dB / 5.8 dB
    Line attenuation (Down/Up):
    46.4 dB / 27.7 dB
    Output power (Down/Up):
    18.5 dBm / 12.6 dBm
    FEC Events (Down/Up):
    126408871 / 3607
    CRC Events (Down/Up):
    102820 / 739
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    0 / 0
    Loss of Power (Local/Remote):
    0 / 0
    HEC Events (Down/Up):
    91458 / 730
    Error Seconds (Local/Remote):
    32083 / 501

    Just enter your down attenuation here- http://www.kitz.co.uk/adsl/max_speed_calc.php  there are things you can do to reduce errors like connecting to the master socket see if there is a difference, checking your wiring and housing of the hub etc. A explanation of errors here-http://www.kitz.co.uk/adsl/linestats_errors.htm
    Mortgage Advisor 2000-2008
    Green Energy Advisor 2008-2010
    Charity Health Care Provider Advisor 2010-
    I'm alright Jack....

  • Why isn't itunes loading? The "error" report keeps coming up and when I press "Don't send" it just won't load . PLEASE HELPPPP !

    I jsut downloaded the newst iTunes.
    When ever I ppress the icon or go through the list of programs to open It, I click on it then the "Error report" comes up. Everytime I try to open it the "error report" comes up and the choices are "Send error report" or "Don't send" and iTunes will not end up opening up. PLEASE HELP !

    See this previous discussion
    https://discussions.apple.com/message/3066086#3066086

  • Upgraded to iTunes 7, get the error report window!

    I just upgraded to iTunes 7 from the most recent 6 version. When I tried to open iTunes, however, I got the Windows error message, "iTunes has encountered a problem and needs to close. " In the error report, it said that the file "C:\DOCUME~1\MAXWEN~1\LOCALS~1\Temp\5fa_appcompat.txt" would be included. How do I get iTunes to work again?
    Athlon XP 2400 PC   Windows XP Pro  

    Try installing the stand alone version of quicktime here (Quicktime WITHOUT iTUnes) http://www.apple.com/quicktime/download/standalone.html

  • HT1491 Why do i keep getting the message 'Cannot connect to iTunes Store' when I have done every connection I can find? What does the error message (-1202) mean when I am on the iTunes site on my computer?

    Why do i keep getting the message 'Cannot connect to iTunes Store' when I have done every connection I can find? What does the error message (-1202) mean when I am on the iTunes site on my computer?

    Hi Velvalee,
    While there may not be specific information about that error, here is an article of steps for troubleshooting connectivity issues with the iTunes store:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    If that article does not help, there is a link near the bottom for an additional article of advanced troubleshooting.
    Cheers!
    - Ari

  • When my macbook kicks me off the internet, why doesn't it let me send the error report to apple anymore?

    It used to send the error report all the time. Now not at all.

    Welcome to Apple Support Communities.
    With the announcement of the forthcoming OS X 10.8 'Mountain Lion', Apple is apparently no longer accepting crash reports from OS X 10.5.x "Leopard".

  • What are the Dashboard reports in sap crm 7.0?

    Hi, Experts.
    Could you guide me what are the dashboard reports are in sap crm 7.0 related sales and marketing, service.if I want to modify existing report how can I do and where I need to do ? If I want to create new dashboard report is there any designing tools are there? How can I create custom dashboard report?
    After creating how we can link in web ui. I searched in forum but I didnu2019t find any information regarding this. Please kindly guide me. related to interactive reports how can i create  and how can link to web ui just provide sample inputs.
    Regards,
    Jemmi.

    Hi,
    For interactive CRM report, please try link
    http://help.sap.com/bp_crm70/BBLibrary/Documentation/C41_BB_ConfigGuide_EN_DE.doc
    On page of
    http://help.sap.com/bp_crm70/CRM_DE/HTML/index.htm
    you may find some other info related to BW analytics, maybe there is info for dashboard? I am not so sure.
    Hongyan

  • What does this error report mean?

    My MacBookPro just crashed. I'd like to figure out why and if I need to worry. Please help.
    Here is a copy of the error report:
    Interval Since Last Panic Report:  1555381 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    707FB1BC-9CBB-4024-A522-BF88D225C49F
    Sat Feb  4 06:13:25 2012
    panic(cpu 1 caller 0x55fe35): "complete() while dma active"@/SourceCache/xnu/xnu-1504.15.3/iokit/Kernel/IOMemoryDescriptor.cpp:2273
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x593b3bb8 : 0x21b837 (0x5dd7fc 0x593b3bec 0x223ce1 0x0)
    0x593b3c08 : 0x55fe35 (0x5e6d94 0x246 0x1d4c0 0x0)
    0x593b3c48 : 0x11ed5e1 (0x94bfe00 0x0 0x593b3c78 0x8618000)
    0x593b3c88 : 0x11f0dea (0x5472eff0 0x0 0x0 0x1000)
    0x593b3cb8 : 0x11e7bf1 (0xad38054 0x0 0x1000 0x0)
    0x593b3d28 : 0x11f0dea (0x8618000 0xad38040 0x0 0x1000)
    0x593b3d58 : 0x15c90a5 (0x593b3d94 0x0 0x1000 0x0)
    0x593b3db8 : 0x15cb3b2 (0x85b8000 0x85a7008 0x593b3e08 0x84d1000)
    0x593b3dd8 : 0x1149698 (0x85c1c80 0x853b800 0x0 0x5595ce)
    0x593b3e08 : 0x114a28a (0x85b0b80 0x853b800 0x0 0x850f400)
    0x593b3e28 : 0x11521dc (0x853b800 0x853b800 0x0 0x2ab22a)
    0x593b3e68 : 0x115233a (0x850f400 0x853b800 0x0 0x0)
    0x593b3ea8 : 0x11544df (0x850f400 0x30 0x74 0x1)
    0x593b3f08 : 0x11501fc (0x850f400 0x2170e7 0x593b3fc8 0x295914)
    0x593b3f28 : 0x552ea6 (0x853fe80 0x7 0x593b3fc8 0x2ab75b)
    0x593b3f88 : 0x552eea (0x8538000 0x0 0x800 0x1b03)
    0x593b3fc8 : 0x2a179c (0x8538000 0x0 0x10 0x9b82ac0)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.iokit.IOAHCIBlockStorage(1.6.4)@0x15c6000->0x15d9fff
                dependency: com.apple.iokit.IOAHCIFamily(2.0.6)@0x1147000
                dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0x11df000
             com.apple.driver.AppleAHCIPort(2.1.7)@0x114d000->0x1160fff
                dependency: com.apple.iokit.IOAHCIFamily(2.0.6)@0x1147000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
             com.apple.iokit.IOAHCIFamily(2.0.6)@0x1147000->0x114cfff
             com.apple.iokit.IOStorageFamily(1.6.3)@0x11df000->0x11f7fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro5,3 (Mac-F22587C8)
    System uptime in nanoseconds: 69295832310232
    unloaded kexts:
    com.apple.driver.AppleMultitouchDriver          207.11 (addr 0x592e8000, size 0x36864) - last unloaded 68723156283647
    loaded kexts:
    com.apple.driver.Oxford_Semi          2.6.1 - last loaded 49606477234152
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleMikeyDriver          2.0.5f14
    com.apple.kext.AppleSMCLMU          1.5.2d10
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleUSBTCButtons          201.6
    com.apple.driver.AppleUSBTCKeyboard          201.6
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleSmartBatteryManager          160.0.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBOHCI          4.2.0
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.driver.AppleUSBMultitouch          207.7
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.NVSMU          2.2.7
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x26200000 / 3
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x26220000 / 4
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8217, 0x06110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 3
    USB Device: PTZ-431W, 0x056a  (WACOM Co., Ltd.), 0x00b7, 0x04100000 / 2

    I suggest you uninstall the hardware and software associated with the following extension:
    com.LivestreamProcaster.driver.LPAudioRedirector          1.0.0
    Alternatively, disconnect the associated peripheral then boot into Safe Mode which will disable the extension. If you no longer get kernel panics then you need to remove this hardware and software or see if the developer has updated software compatible with your version of Snow Leopard.

  • What does the error "Unable to lock the following files:" mean?

    What does the error "Unable to lock the following files:" mean? After the colon in this error message, a path to the .icml file is listed. We are using InDesign CS6 with InCopy CS6 (Mac), assignment-based workflow, on a shared server.
    Thanks,
    Gita M

    Sounds like a permissions issue on that server.
    Bob

  • HT2433 what does the error message that says " You are logged out because another computer is using this IP address." mean?

    what does the error message that says " You are logged out because another computer is using this IP address." mean?

    Some other piece of network ghardware on your home LAN (Local Area Network) is using the IP address your Mac is trying to use.
    Reboot both your modem and router, or the Modem/Router combo box you have, and all pieces of networking equipment, computers and printers, you have connected to your LAN.
    If you continue to get that error then it is a bug in OS X or you have your Mac set to a Static IP address that is being handed out by the routers DHCP server to some other device.

  • What is the error code mean? And how to solve it ?Please give your answer. Thanks

    What is the error code  mean? And how to solve it ?Please give your answer. Thanks
    Attachments:
    QQ截图20140403134626.png ‏59 KB

    duplicate post
    LabVIEW Champion . Do more with less code and in less time .

  • What is the error code -5010D

    what is the error code -5010D

    A little Googling seems to indicate a hard drive problem, which sounds right given the symptoms you're seeing. Make sure you've gotten a good backup of everything. The good news is hard drives are cheap and easy to install. You can look up the procedure for your machine at ifixit.com.

  • What is the error code:0x80020042?

    what is the error code:0x80020042?

    This Discussion may be able to offer some enlightenment...
    https://discussions.apple.com/message/11655160#11655160

  • Do you know what means the error -17502

    Do you know what means the error -17502

    Hi Victor,
    What is the version of teststand you're using? How did you first encounter this error? I am trying to replicating this error on my side and would like to know when does this error occur?
    Sometimes it is a possiblity that one of your registry keys located at HKEY_CURRENT_USER»SOFTWARE»NATIONAL INSTRUMENTS »TESTSTAND might have been corrupted. So deleting this folder should help getting rid of the error.
    But since this is an issue, could you post your exported registry keys, so that we can investigate a little further into the issue. To export the registry key entry, right click on TestStand at ( HKEY_CURRENT_USER»SOFTWARE»NATIONAL INSTRUMENTS »TESTSTAND) and select export. Please attach this file here so that we could further take a look at it.
    I hope to hear back from you soon.
    SijinK
    National Instruments.Message Edited by Support on 07-08-2005 11:47 AM

Maybe you are looking for

  • Current Header Rows Not Appearing on FBL1N - A/P Detailed Line Item Report

    Our A/P staff somehow turned off the header rows at the top of the FBL1N report.    The rows contain the various variables related to the report such as vendor name, vendor address, city, state etc. Does anyone know how I can change the report so tha

  • Need firefox 3.6 flor windows 7

    ''locking - duplicate - https://support.mozilla.com/en-US/questions/867184'' How can I download Firefox 3.6 so I can fill out Fasfa?

  • EMac won't start after replacing RAM

    I bought a 512mb ram to install it, so it'll be 768mb. I stupidly took out the original RAM first before installing both RAM. The ejector tab just wouldnt fit in snugly to the side of the ram. After starting up the emac, i get a "toot" sound and two

  • Macbook Pro internal HDD won't boot, but if i use it by usb works perfect

    Hi people I have this computer with the following problem: The computer will not start if I left the hard drive internally, but the same hard drive boot the OS if I connect it by USB. I did the tests to verify the hard drive, but testing the hard dri

  • Client/server application using sockets

    Hi there, I'm trying to create a client/server application using sockets where the client has a GUI of a membership application form for some sort of club. Basically, the user will enter their name, address, membership no. etc in to various Jtext fie