Help needed: Memory leak causing system crashing...

Hello guys,
As helped and suggested by Ben and Guenter, I am opening a new post in order to get help from more people here. A little background first...  
We are doing LabView DAQ using a cDAQ9714 module (with AI card 9203 and AO card 9265) at a customer site. We run the excutable on a NI PC (PPC-2115) and had a couples of times (3 so far) that the PC just gone freeze (which is back to normal after a rebooting). After monitor the code running on my own PC for 2 days, I noticed there is a memory leak (memory usage increased 6% after one day run). Now the question is, where the leak is??? 
As a newbee in LabView, I tried to figure it out by myself, but not very sucessful so far. So I think it's probably better to post my code here so you experts can help me with some suggestions. (Ben, I also attached the block diagram in PDF for you) Please forgive me that my code is not written in good manner - I'm not really a trained programmer but more like a self-educated user. I put all the sequence structures in flat as I think this might be easier to read, which makes it quite wide, really wide.
This is the only VI for my program. Basically what I am doing is the following:
1. Initialization of all parameters
2. Read seven 4-20mA current inputs from the 9203 card
3. Process the raw data and calculate the "corrected" values (I used a few formula nodes)
4. Output 7 4-20mA current via 9265 card (then to customer's DCS)
5. Data collection/calculation/outputing are done in a big while loop. I set wait time as 5 secs to save cpu some jucie
6. There is a configuration file I read/save every cycle in case system reboot. Also I do data logging to a file (every 10min by default).
7. Some other small things like local display and stuff.
Again I know my code probably in a mess and hard to read to you guys, but I truely appreciate any comments you provide! Thanks in advance!
Rgds,
Harry
Attachments:
Debug-Harry_0921.vi ‏379 KB
Debug-Harry_0921 BD.pdf ‏842 KB

Well, I'll at least give you points for neatness. However, that is about it.
I didn't really look through all of your logic but I would highly recommend that you check out the examples for implementing state machines. Your application suffers greatly in that once you start you basically jumped off the cliff. There is no way to alter your flow. Once in the sequence structure you MUST execute every frame. If you use a state machine architecture you can take advantage of shift registers and eliminate most of your local variables. You will also be able to stop execution if necessary such as a user abort or an error. Definitely look at using subVIs. Try to avoid implementing most of your program in formula nodes. You have basically written most of your processing there. While formula nodes are easier for very complex equations most of what you have can easily be done in native LabVIEW code. Also if you create subVIs you can iterate over the data sets. You don't need to duplicate the code for every data set.
I tell this to new folks all the time. Take some time to get comfortable with data flow programming. It is a different paradigm than sequential text based languages but once you learn it it is extremely powerful. All your data flow to control execution rather than relying on the sequence frame structure. A state machine will also help quite a bit.
Mark Yedinak
"Does anyone know where the love of God goes when the waves turn the minutes to hours?"
Wreck of the Edmund Fitzgerald - Gordon Lightfoot

Similar Messages

  • [LPX] Drummer/Drum Kit Designer memory leak causing crash

    After working with LPX for a couple of days after release with almost no problems save for a few system overload errors that always seemed to sort themselves out, I loaded up a project I had been working on to find that it crashed every time I tried to play the track. Other, smaller projects, still played in varying degrees, some having to wait for a long time seemingly for samplers to load up etc.
    I did some testing (painstaking, considering that I was having to force-quit the application for my computer to even run again; as an aside there were never any error reports for whatever reason) and found that it appears to be Drummer/Drum Kit Designer that's causing massive memory usage. Looking at the activity monitor when loading the project revealed that the memory usage would just go up and up until it maxed out my (rather modest) 4GB RAM, at which point there would be no free memory and the computer would slow almost to a standstill. Removing all instances of Drum Kit Designer and Drummer reduces the load to a point where it is once again manageable.
    This seems like a fault in Drummer, I'm thinking possibly a memory leak. Has anyone else been experiencing this problem/anyone have any thoughts as to how it could be fixed?
    Thanks in advance,
    Jasper

    This is not a memory bug. It's simply the nature of the new Drummer.
    Drummer uses a LOT of samples. It's a 13GB download for a reason. You will need more than 4GB to use drummer and not run into issues.
    The nature of the modern Logic engine - which seems unchanged from v9 - makes it very bad at being able to tell when it's running out of memory. Logic will simply freeze or crash most of the time it runs out. The freeze would be down to it using literally every last MB on your RAM without overstepping the boundary, and the crash would be downt to it claiming to need more real RAM than you have spare.
    Producer kits use 5.1 surround samples, and submixes them to stereo in a way that posistions them around the space. Whilst a doddle for a modern machine, you Mac is rather long in the tooth to be trying to do that whilst struggling to handle 1.2GB patches with 4GB of RAM total.

  • JVM 1.5.0_11 and libumem -- need stack trace help for memory leak

    I'm trying to track down the cause of some memory growth in a java application. In my tests, the java heap appears to remain stable, but the overall memory footprint of the jvm process continues to grow (observed with pmap).
    I've run my application with libumem and have found what appears to be the culprit, but the memory allocation is in libjvm.so and I'm looking for ideas what might cause it.
    uname -a for my host
    SunOS thehost 5.10 Generic_118822-18 sun4u sparc SUNW,Netra-440
    Here is the trace from libumem:
    1f81c4c0::bufctl_auditADDR BUFADDR TIMESTAMP THREAD
    CACHE LASTLOG CONTENTS
    1f81c4c0 1f81a470 ac018b4577a0 7
    1f43f188 8cda6a4 0
    libumem.so.1`umem_cache_alloc+0x210
    libumem.so.1`umem_alloc+0x60
    libumem.so.1`malloc+0x28
    libjvm.so`void*os::malloc+0x28
    libjvm.so`void*ResourceObj::operator new+0x38
    libjvm.so`ThreadStackTrace::ThreadStackTrace #Nvariant 1+0x34
    libjvm.so`void VM_ThreadDump::doit+0xcc
    libjvm.so`void VM_Operation::evaluate+0x80
    libjvm.so`void VMThread::run+0x6e0
    libjvm.so`void*_start+0x208
    libc.so.1`_lwp_start
    What causes this invocation in the JVM? Is there a known memory leak associated with this?
    Thanks in advance for the assistance.

    More on this issue. The included program will continually allocate memory on the process heap until the JVM cannot allocate memory and it exits with the following exception.
    Exception java.lang.OutOfMemoryError: requested 16 bytes for C_Heap: ResourceOBJ. Out of swap space?
    import java.lang.StackTraceElement;
    import java.lang.Thread;
    public class TraceIt {
         public static void main(String[] args) {
              System.out.println("Starting trace");
              int i = 0;
              while (true)
                   if (i%100 == 0) System.out.println(i);
                   StackTraceElement[] se = Thread.currentThread().getStackTrace();
                   i++;
    }

  • InDesign CS6 Causes System Crash

    I installed the trial version of InDesign CS6, When I try to open Mini Bridge my System automatically crashes, I get the "Blue Screen of Death". I'm using Windows 7 Ultimate 64Bits. I need help, I'm afraid to open any other tool cuz' it could make my system crash again. Can someone help me?
    Thank's.

    What Bob is telling you is correct. The way operating systems and application programs work together is that the operating system “catches” any program errors or crashes and results in a “program error” message. Other applications continue to run and the integrity of the system is maintained.
    A BSOD, Blue Screen of Death, is the result of either of the following:
    (1) An unrecoverable hardware error occurs including problems with memory, disk drive, disk driver controller, video card, CPU, etc.
    (2) A programming error occurs in the operating system itself from which the operating system cannot gracefully recover.
    (3) A programming error occurs in system level components such as video drivers.
    (4) Some combination of the above.
    Adobe applications drive the video hardware and video drivers in ways that most other applications don't, often accessing the video card's GPU if the card has one. You may wish to check whether an updated video driver is available for your particular video card. If not, you may try reconfiguring your system to use the standard VGA driver and see if the crashes stop. If they do, then the video driver is the likely cause of the crashes. If the crashes continue you may want to have further diagnostics run on your system, especially memory diagnostics. InDesign does tend to use as much of the memory as you have up to 2GB or main memory. If you are running additional applications concurrent with InDesign, you may be exercising memory that isn't otherwise frequently accessed - and that memory may be problematic.
              - Dov

  • Help with memory leak using DAQmx & VB6

    I'm using DAQmx 8 with VB6 to control an NI 6251 analog input board. The application calls for changing channel configurations as the system is running, thus there are many multiple create task/clear task calls. I've been trying to track a memory leak, so I've created a very simple VB app to help identify the source. I have a loop with the following calls in it:
    DAQmxCreateTask
    DAQmxAddGlobalChansToTask
    DAQmxCfgSampClkTiming
    DAQmxStartTask
    DAQmxReadAnalogF64
    DAQmxClearTask
    I see a little over 1Kb leak per loop iteration. If I skip everything except the create task, add channels and clear task, it still shows a leak.
    Am I doing something wrong? Should I not be calling CreateTask/ClearTask multiple times?
    Thanks for any help.
    mfrazer

    Mfrazer,
    You definitely don’t want to have CreateTask and subsequently
    ClearTask in a loop, nor does it look like you need to for your application.
    You only need on task, you just need to change the task, so there is no need to
    create multiple tasks. So leave the CreateTask and ClearTask on the outsides of
    your loop, and keep everything else on the inside of the loop and make the
    changes you need to the task each iteration. Also you are going to want to have
    a DAQmxStopTask after your read to make sure the task is stopped and in the
    proper state to be reconfigured. I hope that helps.
    -GDE

  • Satellite L655 - RAM upgrade causes system crash

    I bought and inserted 2 4GB Kingston RAM chips. When I boot up the Windows and Ubuntu 14.04 (I have a dual boot system) crashes.
    If I run a memory test from Ubuntu's boot menu the system freezes.
    I put back the old RAM and all is well.
    To solve this problem I tried upgrading the BIOS firmware using the software available from the Toshiba site, but that gives me an error saying that the battery needs to be fully charged and the AC adapter plugged in. Fully charged battery with charger plugged in still gives the same error. I replaced the battery, which was old and only lasted 5 minutes, but the error remains on the bios upgrade.
    Any ideas what could be causing this would be appreciated.
    Can I get hold of a BIOS upgrade CD ISO that does not check the battery and charger state? I promise I won't let the machine die while the bios upgrade goes ahead!
    Thanks in advance.

    Hi Ferdi
    Thanks for your reply. I'll contact my supplier to get the chips I have exchanged. Not sure which numbers are my part's number. I have this:
    Kingston Technology
    KVR16LS11/4
    4GB PC3L - 12800 CL11 204 SODIMM
    KTC TA01536 9U5469-045.A00LF R3161
    My laptop is Toshiba Satellite L655 - 146
    The fact that the BIOS upgrade does not work still bugs me, though. At least I have a new battery now.
    Thanks again.

  • Sleeping firewire drive causes system crash

    I have a 320 GB external firewire seagate drive connected to my Dual Ghz Quicksilver G4. At least twice a day, when I try to access that drive, I experience a system crash, what I believe to be a kernal panic. I get a message telling me I need to shut my computer down and restart it. I am thinking this is not so good for my computer.
    So, either the hard drive is the problem or it's the third party firewire card i have installed in one of my PCI slots. But here's the thing, other drives are connected to that card.
    Would keeping the Seagate drive awake stop this from happening? It goes to sleep all the time. Have others experienced problems with the seagate drives? Should I stop using it?

    Hi, Aaron. Welcome to the Discussions.
    If you are seeing this message, that indicates a kernel panic.
    There could be a problem with the FireWire drive or the card. If disconnecting the drive for a few days results in no additional panics, then it is the drive. For that, I'd contact Seagate. If not, the card becomes suspect. An examination of the panic log might prove helpful.
    You can also try running Step 1 of the process specified in my "Resolving Disk, Permission, and Cache Corruption" FAQ against the Seagate FireWire drive.
    Checking the FireWire cables, trying different cables or ports, checking that the card is installed correctly, checking that you assembled the Seagate drive and enclosure correctly (sounds like you built the FW drive) are some other troubleshooting steps to consider. The FireWire enclosure itself may be defective.
    See also my "Resolving Kernel Panics" FAQ. This FAQ includes step-by-step instructions for identifying and resolving some of the most common causes of kernel panics, including tips like those above.
    My FAQ is a roadmap: start at the beginning and work through to the end, following the instruction in the order specified, including the "If all else fails..." section if a cause or resolution is not found in an earlier troubleshooting step therein.
    You maybe unable to prevent the FireWire drive from sleeping. Secondary hard drives (second internal, as well as external drives) may not respect the "Put the hard drive(s) to sleep when possible" option if de-selected. I discuss this particular issue in my "Spinning Beach Ball Of Death (SBBOD)" FAQ, specifically in the section entitled "SBBOD spins for 30-35 seconds. You may hear your hard drives spinning up."
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Trackpad gesture causes system crash

    Hello,
    In some cases a multifinger swipe gesture on the trackpad causes a total system crash. This problem is reproduceable when VLC video player is running. When I first minimize VLC and then make a 3-finger-gesture downwards the computer crashes. This also happens with at least the iOs simulator used by Xcode.
    I recently upgraded from Snow Leopard to Yosemite. This probably did not create the actual problem, because these crashes also occured from time to time in a more random way. Now they are just more regular.
    These are the specs of my Mac and a crash report. Reports are by the way just create in a few cases. I can also post some log entries close to the crash, if that would help. But I'm not totally sure if they have anything to do with that.
    Thanks for your help
    MacBook Pro (15-inch, Mid 2010)
    2,53 GHz Intel Core i5
    4 GB 1067 MHz DDR3
    Intel HD Graphics 288 MB
    300GB free disk space
    OS X Yosemite 10.10
    Crash Report while running VLC
    Thu Nov 13 13:30:38 2014
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff7fa0bb7f63): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xffffff80c5bd5000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.7.21/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80b3b6aca0 : 0xffffff801df3a811
    0xffffff80b3b6ad20 : 0xffffff7fa0bb7f63
    0xffffff80b3b6ae00 : 0xffffff7f9eccdb9f
    0xffffff80b3b6aec0 : 0xffffff7f9ed9718e
    0xffffff80b3b6af00 : 0xffffff7f9ed971fe
    0xffffff80b3b6af70 : 0xffffff7f9f016056
    0xffffff80b3b6b0a0 : 0xffffff7f9edba82d
    0xffffff80b3b6b0c0 : 0xffffff7f9ecd45f1
    0xffffff80b3b6b170 : 0xffffff7f9ecd20fc
    0xffffff80b3b6b370 : 0xffffff7f9ecd3a4b
    0xffffff80b3b6b440 : 0xffffff7fa01897aa
    0xffffff80b3b6b520 : 0xffffff7fa0186a7c
    0xffffff80b3b6b5a0 : 0xffffff7fa0187631
    0xffffff80b3b6b620 : 0xffffff7fa0187e56
    0xffffff80b3b6b760 : 0xffffff7fa01888fb
    0xffffff80b3b6b890 : 0xffffff7fa01bbbce
    0xffffff80b3b6b8d0 : 0xffffff7fa01bc923
    0xffffff80b3b6b910 : 0xffffff7fa01b634c
    0xffffff80b3b6ba70 : 0xffffff7fa01b6c5c
    0xffffff80b3b6bab0 : 0xffffff7fa01b2213
    0xffffff80b3b6bae0 : 0xffffff7fa01953a4
    0xffffff80b3b6bb30 : 0xffffff801e501c92
    0xffffff80b3b6bb60 : 0xffffff801e502859
    0xffffff80b3b6bbc0 : 0xffffff801e500003
    0xffffff80b3b6bd00 : 0xffffff801dfea517
    0xffffff80b3b6be10 : 0xffffff801df3e91c
    0xffffff80b3b6be40 : 0xffffff801df235a3
    0xffffff80b3b6be90 : 0xffffff801df33e8d
    0xffffff80b3b6bf10 : 0xffffff801e00a142
    0xffffff80b3b6bfb0 : 0xffffff801e03ac66
    Kernel Extensions in backtrace:
    com.apple.nvidia.classic.NVDAResmanTesla(10.0)[796AE430-39FB-3255-8161-D52AFA28E E2B]@0xffffff7f9ec7d000->0xffffff7f9eee6fff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f9e724000
    dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f9ec6d000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f9ec26000
    com.apple.nvidia.classic.NVDANV50HalTesla(10.0)[7FE40648-F15F-3E18-91E2-FDDDF4CD A355]@0xffffff7f9eef1000->0xffffff7f9f19afff
    dependency: com.apple.nvidia.classic.NVDAResmanTesla(10.0.0)[796AE430-39FB-3255-8161-D52AFA 28EE2B]@0xffffff7f9ec7d000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f9e724000
    com.apple.GeForceTesla(10.0)[67CD214F-0F26-3BEF-BAD0-CF0F83C2616D]@0xffffff7fa01 58000->0xffffff7fa0225fff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f9e724000
    dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f9ec6d000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f9ec26000
    dependency: com.apple.nvidia.classic.NVDAResmanTesla(10.0.0)[796AE430-39FB-3255-8161-D52AFA 28EE2B]@0xffffff7f9ec7d000
    com.apple.driver.AppleMuxControl(3.7.21)[32B7E2DE-1F9D-3555-B687-7A76A62B81D2]@0 xffffff7fa0ba9000->0xffffff7fa0bbcfff
    dependency: com.apple.driver.AppleGraphicsControl(3.7.21)[62689710-EEA7-307A-AC83-B8F25DA88 A6A]@0xffffff7fa0ba1000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[70E2B65E-A91A-3522-A1A0-79FD63EABB4C]@0xfffff f7f9eb4b000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f9e724000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f9ec26000
    dependency: com.apple.driver.AppleBacklightExpert(1.1.0)[0183904C-6A16-32C4-9405-EEFD7F820B 02]@0xffffff7fa0ba4000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    14A389
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:
    0x000000001dc00000
    Kernel text base: 0xffffff801de00000
    __HIB  text base: 0xffffff801dd00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 196154267663
    last loaded kext at 54479935154: com.apple.driver.AudioAUUC    1.70 (addr 0xffffff7fa0440000, size 32768)
    last unloaded kext at 172341790590: com.apple.driver.AppleUSBUHCI    656.4.1 (addr 0xffffff7f9f348000, size 65536)
    loaded kexts:
    com.apple.driver.AudioAUUC    1.70
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AGPM    100.14.37
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.3.0f10
    com.apple.driver.AppleOSXWatchdog    1
    com.apple.driver.AppleMikeyHIDDriver    124
    com.apple.driver.AppleMikeyDriver    266.5
    com.apple.driver.AppleHDA    266.5
    com.apple.driver.AppleIntelHDGraphics    10.0.0
    com.apple.iokit.IOUserEthernet    1.0.1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.driver.AppleLPC    1.7.3
    com.apple.driver.AppleSMCLMU    2.0.4d1
    com.apple.driver.AppleHV    1
    com.apple.driver.AppleMuxControl    3.7.21
    com.apple.driver.AppleIntelHDGraphicsFB    10.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.3.0f10
    com.apple.GeForceTesla    10.0.0
    com.apple.driver.AppleUpstreamUserClient    3.6.1
    com.apple.driver.AppleMCCSControl    1.2.10
    com.apple.driver.AppleSMCPDRC    1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin    1.0.0
    com.apple.driver.SMCMotionSensor    3.0.4d1
    com.apple.driver.AppleUSBTCButtons    240.2
    com.apple.driver.AppleUSBCardReader    3.5.0
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleIRController    327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.iokit.SCSITaskUserClient    3.7.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.6.5
    com.apple.driver.AirPort.Brcm4331    800.20.24
    com.apple.driver.AppleUSBHub    705.4.1
    com.apple.iokit.AppleBCM5701Ethernet    10.1.2b3
    com.apple.driver.AppleAHCIPort    3.0.7
    com.apple.driver.AppleFWOHCI    5.5.2
    com.apple.driver.AppleUSBEHCI    705.4.14
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleACPIButtons    3.1
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    3.1
    com.apple.driver.AppleAPIC    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient    218.0.0
    com.apple.nke.applicationfirewall    161
    com.apple.security.quarantine    3
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    218.0.0
    com.apple.AppleGraphicsDeviceControl    3.7.21
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOSerialFamily    11
    com.apple.driver.DspFuncLib    266.5
    com.apple.kext.OSvKernDSPLib    1.15
    com.apple.iokit.IOAudioFamily    200.6
    com.apple.vecLib.kext    1.2.0
    com.apple.iokit.IOSurface    97
    com.apple.iokit.IOFireWireIP    2.2.6
    com.apple.driver.AppleSMBusPCI    1.0.12d1
    com.apple.driver.AppleGraphicsControl    3.7.21
    com.apple.driver.AppleBacklightExpert    1.1.0
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.3.0f10
    com.apple.iokit.IOBluetoothFamily    4.3.0f10
    com.apple.driver.AppleHDAController    266.5
    com.apple.iokit.IOHDAFamily    266.5
    com.apple.nvidia.classic.NVDANV50HalTesla    10.0.0
    com.apple.driver.AppleSMBusController    1.0.13d1
    com.apple.nvidia.classic.NVDAResmanTesla    10.0.0
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOUSBUserClient    705.4.0
    com.apple.driver.IOPlatformPluginLegacy    1.0.0
    com.apple.driver.IOPlatformPluginFamily    5.8.0d49
    com.apple.driver.AppleSMC    3.1.9
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.7.0
    com.apple.iokit.IOUSBMassStorageClass    3.7.0
    com.apple.driver.AppleUSBMultitouch    245.2
    com.apple.iokit.IOUSBHIDDriver    705.4.0
    com.apple.driver.CoreStorage    471
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.7.0
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.driver.AppleUSBMergeNub    705.4.0
    com.apple.driver.AppleUSBComposite    705.4.9
    com.apple.iokit.IOAHCISerialATAPI    2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.7.0
    com.apple.iokit.IO80211Family    700.52
    com.apple.iokit.IOEthernetAVBController    1.0.3b3
    com.apple.driver.mDNSOffloadUserClient    1.0.1b8
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOAHCIFamily    2.7.0
    com.apple.iokit.IOFireWireFamily    4.5.6
    com.apple.iokit.IOUSBFamily    705.4.14
    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    300.0
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.AppleMobileFileIntegrity    1.0.5
    com.apple.driver.AppleCredentialManager    1.0
    com.apple.driver.DiskImages    389.1
    com.apple.iokit.IOStorageFamily    2.0
    com.apple.iokit.IOReportFamily    31
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    3.1
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.Libm    1
    com.apple.kec.pthread    1
    com.apple.kec.corecrypto    1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.53 GHz, 4 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.24)
    Bluetooth: Version 4.3.0f10 14890, 3 services, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 500,11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: Built-in iSight
    Thunderbolt Bus:

    Hi busrardn,
    If you are having intermittent but reproducible system crashes from specific trackpad inputs on your MacBook Pro, you may find the troubleshooting steps outlined in the following article helpful (apologies if you have already seen it):
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Regards,
    - Brenden

  • Webcam Live Pro causes system crash with Windows XP Home

    Ever since installing Webcam Live Pro I have been having random system restarts. This ONLY happens when the webcam is being used. It happens when using the Creative Webcam Center or another application. Sometimes the restart will happen after a few minutes, and other times an hour or more. I am running Windows XP sp2 with all patches, and there are no driver conflicts listed in Device Manager. I have the cam set at 60 hz.
    Even though there are no listed driver conflicts in Device Manager, there clearly is a driver conflict that occurs from time to time. I have read of other people having this same problem on this forum with Webcam Live Pro. I am using the driver ...0 which is dated 0//2004, and the automatic update program on this web site says that I am using the latest driver. But in the download section of this web site, the latest driver is listed as .0.0.0 and dated November 9, 2004. The driver numbers or dates do not match, and the driver on the web seems to have an earlier number but a later date!?
    Does anyone (especially a Creative tech support person who may be reading this post) have any idea what to do? The driver version is one issue. But the big issue is the system crashes.
    Best,
    CB

    Solution! I discovered the problem causing the system crash, and I think it is sufficiently interesting to note here so that others may benefit from what I discovered. First, there is no fundamental problem/conflict with the driver for Webcam Live Pro. The trouble in my instance is that I was running another program that utilized the web cam, and that program conflicted with the Webcam Live Pro program that was constantly running in the system tray. Basically, the program in the system tray is loaded with the set-up for Webcam Live Pro. It constantly monitors the computer system to see if the cam is connected to the computer. When it does this while another program is using the cam, the conflict occurs, causing the entire computer to reboot. The solution is to right mouse click the icon for Webcam Live Pro in the system tray, go to settings, and to remove the check that allows the program to check for the presence of the web cam. Just to be safe, I then also exited the Webcam Live Pro program from the system tray so that nothing from that program could interfere with my use of the webcam using another program.
    The result is that the webcam is rock solid, with no system crashes. I have been running it nonstop for hours without a problem.
    I hope this helps someone else.
    Best,
    CB

  • Imatch causes system crashes

    After installing iMatch my memory seems te be fully loaded and hangs. I have a 24" early 2009 iMac with 8GB internal memory, no running other applications.
    I already tried to throw away the iTunes library and startes importing the XML data again, but also the systems crashes. Then I tried te recover systems rights, also a hangup. Tried te start the save mode, no way it works. It is NOT the harddisk, because the systems starts when I login as another user.
    Today I called Apple, but the won't give support on the because there is no Apple Care anymore !!! ***. The sold me iMatch last week, they screw up my system and then they sent you away with this unproper answer. I told her that I pay her salary, 4 iPhones at this house, 2 iPads, iMac, Macbook Pro, Apple TV, Macbook and the only thing Apple produces is a simple answer while referring to internal procedures.
    Who can help me? I live in Amersfoort, Holland.
    I install 10.7.3 and I hope that the bugs are sneaky solved by this update.....

    This definitely does not sound like iTunes Match, suggest the following:
    1.  Make a Secure Backup of your Song files;
    2.  Restart computer from cold;
    3.  Re-install latest version of iTunes;
    4.  Start iTunes with Option key held down - select option to create new library;
    5.  Import your Song files from your secure backup into your new library.
    At this point you should have a stable fully functioning system.  From here, take a further secure backup of the full library, incldung the Song files - start iTunes Match - allow the 3-step process to complete (can take from few hours to few days).  At this point you can begin to enable further devices, suggesting starting with computers and moving onto ipod / ipad / iphone etc.
    Do let us know how it works out.

  • My Audigy 2 ZS is causing system crashes and..

    Hi guys,
    I've had my computer for over a year now and any time I play a game I get the blue screan of death and or send error report. Then Microsofts site tells me that the system crash was the result of a device driver. I have been having sound problems since day one and did not want to deal with so I just delt with it, NO MORE!!! I have had popping, crackling, and NPC's lips moving with no sound for a few seconds, Oblivion is the only game where I got popping or cracking sounds and missing sound FX. I've uninstalled the drivers and recently updated the sound drivers with no fix, I've updated each new driver 3 times and still problems no solved, but every time it say a problem has accurd with Oblivion and needs to close or SilentHunter 3 or doom 3 or Fear or any game I have Ive had enough!!! What is my problem? The only device I have ever had a problem with is my sound card. I also herd other people having the same simptems I have had and some say reduce your hardware accelleration. Please help!

    O ya my spec P4 3.0 630 presscott, GB 533 Ram, SATA hard dri've 80GB, 6xDVD ROM, 7800 GTX 256MB, Antec truepower 550Watts with PCI EXPRESS CONNECTOR. I have a rock solid 45-75 FPS on Oblivion @ 280x024 75HZ with settings at mostly high, shadows off, witch really helps!

  • 3G Ipod caused System Crash - now my MS Office 2008 doesn't work properly

    I, in retrospect foolishly, plugged in a 3G iPod that I don't own. It beeped about 4-5 time and then the system crashed (you know that one that brings up that overlay and you must restart the computer?). I had been running Entourage, Word, Excel, iTunes and Firefox.
    I then went to start up my work again and the MS Office programmes kept crashing. Apparently the MS Office database was damaged. I tried to repair it according to instruction but it didn't work.
    I did a permissions check and repair. I also checked for damaged files. This indicated that Adobe CS3 Device Central was damaged, System Sync (MS), My Day and Google Updater (coincidental?) were all damaged.
    I have completely removed all Adobe and MS Office files (hunting them down with spotlight), un-installing where possible with MS Office and Adobe software and Appzapper.
    I removed all the other files that were damaged then re-installed the software (MS Office without Entourage and Adobe PS and Illustrator).
    I rechecked for damaged files and still Device Central was damaged and MS Office is being a pain in the butt. Word takes forever to open, save and close. Excel is as bad and copying cells stalls the programme.
    My impression is that there is something still in the system that is messing up MS Office and Adobe. Could it all have originated from the system crash and the crappy iPod?
    Can anyone tell me what I can do, files to delete... ANYTHING! I have re-installed Office several times with no improvement.
    Thanks to you bright sparks in advance.

    HI Phil,
    "you know that one that brings up that overlay and you must restart the computer?"
    You are describing what's known as a kernel panic. Go here for help resolving this issue:
    Resolving Kernel Panics X Lab
    Carolyn

  • Help needed regarding change of system CLASSPATH

    Hi All,
    I need to change the system CLASSPATH using my java programe. I tried the following code but its not working though it returns the correct CLASSPATH, but unable to do the modification. All I need is to append a new jar file in the existing CLASSPATH..
    code]
    try{
              sysMap = System.getenv();
              }catch(Exception se1){
                        System.out.println("Exception in finding Environment properties");
              Set Keys = sysMap.keySet();
              Iterator It = Keys.iterator();
              while(It.hasNext()){
                   String strNow =(String) It.next();
                   if(strNow.contains("CLASSPATH")){
                        System.setProperty("CLASSPATH", ".;C:\\Calypso\\Software\\\\Release\\jars\\calypso.jar;C:\\Calypso\\Software\\Release\\build;C:\\Calypso\\Software\\Release\\build\\calypsofx;C:\\Calypso\\Software\\Release\\resources;C:\\Calypso\\Software\\Release;C:\\Calypso\\Software\\Release\\jars\\jconn2.jar;C:\\Calypso\\Software\\Release\\jars\\jaxb-1.0.4\\;C:\\Calypso\\Software\\Release\\jars\\javacup.jar;C:\\Calypso\\Software\\Release\\jars\\antlr.jar;C:\\Calypso\\Software\\Release\\jars\\ojdbc14.zip;C:\\Calypso\\Software\\Release\\jars\\web\\servlet.jar;C:\\Calypso\\Software\\Release\\jars\\web\\webserver.jar;C:\\Calypso\\Software\\Release\\jars\\ftp.jar;C:\\Calypso\\Software\\Release\\jars\\itext-1.02b.jar;C:\\Calypso\\Software\\Release\\jars\\Jama-1.0.1.jar;C:\\jdk1.5.0_10\\bin;C:\\Calypso\\Software\\Release\\webfx\\calypsoWebFXServer.jar;C:\\XXX.jar");
                        System.out.println("Classpath changed");
    Any help will be appreciated.

    Hi Kaj ,
    Well I am in a situation where we need to extend a
    existing system and we are providing the client with
    a new jar file for every modification. Now all I need
    is that our programe automatically add (infect
    append) the jar file in the existing system
    CLASSPATH, so that the client need not to add(append)
    the new jar files all the time.
    Can you provide any help??As others have said, use -cp as argument when you start your application. It's quite common that people write a script that adds all jars in a certain directory to the argument to -cp.
    Kaj

  • Help needed to DELETE a System created with Logical Components assigned.

    Hi,
    I created a system in SMSY in my Solution Manager system. I unknowingly assigned the system to Logical Components. Now on finding that it was a worng way of configuration I need to DELETE the system and recreate it using the option "Create new system with assistant."
    Please help me in resolving the issue. I am not getting an option from the were used list to delete the assignment of the system.
    Expecting a reply at the earliest.
    Regards,
    Vineeth

    Dear friend
    You can remove the system from the logical component by clicking on display/change and removing the SID from the system assignments,
    just select the blank field from F4 help.
    Once you have removed the system from the logical component, you will be able to delete the system.
    shailesh Tiwari

  • MDNSReporter causing system crash

    Ever since upgrading to 10.5.7, I've had frequent, daily system crashes. I did an archive and install from the disks, then used the combo updater to 10.5.7. The console logs show that just prior to every crash, I have a lot of activity regarding the mDNSReporter for a few seconds. Any suggestions on what might be causing this? Currently I think it may be Little Snitch (2.1.4) interacting with something else, so i plan to disable it for a while and see if I stop crashing. Logs are posted below.
    6/6/09 11:39:00 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:00 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:00 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:01 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:01 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:01 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:01 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:02 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:02 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:02 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:03 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:03 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:03 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:04 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:04 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:04 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:05 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:05 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:05 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:06 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:06 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:06 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:07 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:07 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:08 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:08 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:08 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:09 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:09 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:09 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:10 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:10 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:10 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:11 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:11 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:12 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:12 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:12 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:13 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:13 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:13 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:14 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:14 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:14 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:14 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:15 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:15 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:15 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:16 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:16 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:16 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:17 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:17 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:17 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:17 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:18 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:18 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:19 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:19 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:19 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:20 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:20 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:20 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:21 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:21 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:21 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:22 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:22 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:22 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:23 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:23 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:23 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)
    6/6/09 11:39:24 AM mDNSResponder[16] CheckNATMappings: Failed to allocate port 5350 UDP multicast socket for NAT-PMP announcements
    6/6/09 11:39:24 AM mDNSResponder[16] mDNSPlatformUDPSocket: SetupSocket 5350 failed error -1 errno 48 (Address already in use)

    Shams Shirley,
    The link you gave points directly to the one I gave you.
    If you follow [the link I gave you|http://openradar.appspot.com/radar?id=3406], you'll see that it gives a diff to apply as a workaround. One other way to make the problem in mDNSReporter go away is to put your Mac on the internet side of your router.
    You should know that [portmap|http://developer.apple.com/documentation/Darwin/Reference/ManPages/man8/portmap .8.html] is built into OS X, as is the [kill|http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/kill.1. html] command.
    Yes, finding and removing the conflicting app that opens up UDP ALL-SYSTEMS.MCAST.NET:5350 with SO_REUSEPORT would take care of the issue. What do you see when you run [netstat|http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/netstat .1.html] with the -g (multicast) switch?
    -Wayne

Maybe you are looking for