A non-debugg​able thread caused a unknown fault address 0x7c96478e

hi, i am getting FATAL RUN TIME ERROR, unknown source position thread id 0x0000OBC4,a non-debuggable thread caused a unknown fault address 0x7c96478e.i dont know where the error occurs. pls help 

Hi Softengr,
There are many reasons why this error occurs. If I could get a log of your crash that would help us figure out what is happening and then suggest ways to fix it. Here is a link to instructions that walk you through generating this crash log.
https://decibel.ni.com/content/people/nickb/blog/2​009/06/10/generating-crash-dumps-for-analysis-by-n​...
The instructions about where topost it are at the bottom of the page. After you have uploaded it please let us know by submitting a post. Thanks.
Perry S.
Applications Engineer
National Instruments

Similar Messages

  • Fatal Run-Time - Unknown Fault - on any CVI program close

    I have been trying to track down a few what seem like phantom Fatal Run Time Errors on my program closes.
    I am running LabWindows/CVI 2010 Full 10.0.1 (419)
    I originally posted here -> http://forums.ni.com/t5/LabWindows-CVI/EasyTab-ConvertFromCanvas-memory-leak/m-p/3084769#M69465
    As I thought this was related to tabs, where my resource tracker shows 'unclosed' resources.
    Now I am opening a different program and have found that even though I put my return 0; at the top of my main loop, I still get a fatal run time error.
    The error is exactly:
    FATAL RUN-TIMe ERROR
    Unknown source position, thread id 0x00001BB4 
    The program has caused a 'Unknown' fault at 0x748A4F11
    This occurs every time I run my program in the CVI IDE.
    There are no allocated resources in my resources window.
    Searching for either address in my map file brings no results.
    Thanks,
    Nick

    Hi ngay528,
    I have attached a link below to one of our discussion forums that walks through using the Resource Tracking feature of LabWindows/CVI. Again, sometimes this particular error is caused by leaving resources open at the end of an application, so this feature can help us identify those resources if that is the case. Please follow the steps listed in the solution of the thread (message number 4, marked in green). 
    FATAL RUN-TIME ERROR: Unknown source position, thread id 0x00000EB4: The program has caused a 'General Protection' fault at 0x00459B9D:
    http://forums.ni.com/t5/LabWindows-CVI/FATAL-RUN-TIME-ERROR-Unknown-source-position-thread-id/m-p/16...
    Thomas N.
    Applications Engineer
    National Instruments

  • A non-debuggable thread is trying to suspend execution

    Hi
    I am executing a test under TestStand and from time to time, my program stops and a window appears with the message :
    A non-debuggable thread is trying to suspend execution at address 00000001.
    Do you want to suspend execution?
    Then I have the choice between Yes or No. If I answer Yes, my program goes on normally, if I answer No, it stops.
    I am using TestStand 3.1 (3.1.0.9095) with LabWindows/CVI 7.1.1 (314) under Windows2000. The last time it happens, it was in a step which calls a function written under LabWindows/CVI. I don't use multithread programming in TesTstand and LabWindows.
    Did anybody have this problem and resolve it ?
    Tanks in advance
    Laurent

    "A non debuggable thread is trying to suspend execution" appears always more than one at startup/run of debug version of my developed C program from inside CVI 8.0.1 IDE, in a WIndows 2000 base (no SP4) installation.
    I press no , no, no ,,, and my application (in IDE) behaves regularly.
    Moreover, when I end my application, the IDE seems to be still in run mode
    and I have to press the STOP button to stop it completely (no name of program in task bar).
    >>This does not happen with CVI 8.0 installed on WIndows Xp SP2 or Windows 2000 SP4.<<
    Was it tested CVI  8.0.x under old windows 2000 versions ??
    It seems that this problem is known, but not fixed yet.
    Is there any workaround on 2000 base (no SP) ??
    This

  • Non debuggable thread is trying to suspend execution

    Hi all,
    I have a program that is using the WinMM library to sample the wave-in in a buffer, for 0.015s every 0.030s.
    The program works OK, but every now and then I get an error saying:
    "A non-debuggable thread is trying to suspend execution at address 7C90120E.
    Do you want to suspend execution?"
    You can choose whether or not to suspend, and in either case the error will come again.
    Sometimes it runs without a problem for about 30s, sometimes I get the error every second, so at very unregular intervals.
    I tried to do the sampling in a seperate thread but it doesn't make any difference (conceirning the error)
    I'm using LABWindows/CVI 9.0 at WindowsXP Professional 2002 sp3, using Windows SDK 7.1.
    Does anyone know what could be the problem?
    Regards, Dirk
    Solved!
    Go to Solution.

    In the main program I initialize the Format:
    pFormat.wFormatTag=WAVE_FORMAT_PCM; // simple, uncompressed format
    pFormat.nChannels=1; // 1=mono, 2=stereo
    pFormat.nSamplesPerSec=sampleRate; // 44100
    pFormat.nAvgBytesPerSec=sampleRate*2; // = nSamplesPerSec * n.Channels * wBitsPerSample/8
    pFormat.nBlockAlign=2; // = n.Channels * wBitsPerSample/8
    pFormat.wBitsPerSample=16; // 16 for high quality, 8 for telephone-grade
    pFormat.cbSize=0;
    result = waveInOpen(&hWaveIn, WAVE_MAPPER,&pFormat,
    0L, 0L, WAVE_FORMAT_DIRECT);
     Then every 0.030s or so, getsound() is called at a TIMER_TICK_EVENT
     getsound() is:
    void getsound(void)
    WAVEHDR WaveInHdr;
    // Set up and prepare header for input
    WaveInHdr.lpData = (LPSTR)waveIn;
    WaveInHdr.dwBufferLength = NUMPTS*2;
    WaveInHdr.dwBytesRecorded=0;
    WaveInHdr.dwUser = 0L;
    WaveInHdr.dwFlags = 0L;
    WaveInHdr.dwLoops = 0L;
    waveInPrepareHeader(hWaveIn, &WaveInHdr, sizeof(WaveInHdr));
    // Insert a wave input buffer
    result = waveInAddBuffer(hWaveIn, &WaveInHdr, sizeof(WaveInHdr));
    if (result)
    Fmt (ErrorMessage, "%s","Failed to read block from device");
    MessagePopup ("Audio Error", ErrorMessage);
    // Commence sampling input
    result = waveInStart(hWaveIn);
    if (result)
    Fmt (ErrorMessage, "%s","Failed to start recording");
    MessagePopup ("Audio Error", ErrorMessage);
    // Wait until finished recording
    do {} while (waveInUnprepareHeader(hWaveIn, &WaveInHdr, sizeof(WaveInHdr))==WAVERR_STILLPLAYING);
    Hope this helps!

  • Unable to expand DG is Lync client - Cannot perform this action, and the cause is unknown.

    Hi,
    I have a user in our Hong Kong office that is unable to open a distribution group she has added to her Groups. She gets the error message "Cannot perform this action, and the cause is unknown. Contact your support team to investigate."
    I can add the group and expand it, so can some of her colleague, and some cannot. Her colleagues who can have the same client and global policy settings as she does. 
    I read in a similar thread that this could be resolved by confirming the server times on Lync, AD (domain controller checked and Exchange but they were all correct and in sync. 
    The global policy is set to 250 max contacts - but does a DL count as 1 contact, or does it count all the people within the DG? I am getting HK to confirm she does not have too many contacts but I dont think this is the issue. 
    Anyone else come across this issue?
    Phil

    You can run the command Test-CsGroupExpansion to test the ability of a user to employ group expansion.
    For the usage of the command, you can check
     http://technet.microsoft.com/en-us/library/gg399009.aspx
    Lisa Zheng
    TechNet Community Support

  • Using JOptionPane in a non-event dispatching thread

    I am currently working on a screen that will need to called and displayed from a non-event dispatching thread. This dialog will also capture a user's selection and then use that information for later processing. Therefore, the dialog will need to halt the current thread until the user responds.
    To start, I tried using the JOptionPane.showInputDialog() method and set the options to a couple of objects. JOptionPane worked as advertised. It placed the objects into a combobox and allowed the user to select one of them. However, it also gave me something unexpected. It actually paused the non-event handling thread until the user had made a selection. This was done without the JOptionPane code being wrapped in a SwingUtilities.invokeLater() or some other device that would force it to be launched from an Event Handling Thread.
    Encouraged, I proceeded to use JOptionPane.showInputDialog() substituting the "message" Object with a fairly complex panel (JRadioButtons, JLists, JTextFields, etc.) that would display all of the variety of choices for the user. Now, when the screen pops up, it doesn't paint correctly (like what commonly occurs when try to perform a GUI update from a non-event dispatching thread) and the original thread continues without waiting for a user selection (which could be made if the screen painted correctly).
    So, here come the questions:
    1) Is what I am trying to do possible? Is it possible to create a fairly complex GUI panel and use it in one of the static JOptionPane.showXXXDialog() methods?
    2) If I can't use JOptionPane for this, should I be able to use JDialog to perform the same type function?
    3) If I can use JDialog or JFrame and get the threading done properly, how do I get the original thread to wait for the user to make a selection before proceeding?
    I have been working with Java and Swing for about 7-8 years and have done some fairly complex GUIs, but for some reason, I am stumped here. Any help would be appreciated.
    Thanks.

    This seems wierd that it is functioning this way. Generally, this is what is supposed to happen. If you call a JOptionPane.show... from the Event Dispatch Thread, the JOptionPane will actually begin processing events that normally the Event Dispatch Thread would handle. It does this until the user selects on options.
    If you call it from another thread, it uses the standard wait and notify.
    It could be that you are using showInputDialog for this, try showMessageDialog and see if that works. I believe showInputDialog is generally used for a single JTextField and JLabel.

  • Errror.printstacktrace()   in non debugger version of flash player

    Hi,
              i want to log the  run time errors occured  into data base . I am able to handle it by using try catch block.
    Using  errror.printstacktrace() method i am able to get the errror occured at the source with line no.
    Un fortunatley  errror.printstacktrace()  returns null in non debugger version.Its working only in debugger version of flash player.
    but in  production  environment we will have only non debugger version of flash player. Is any work around to  get the errror occured at the source with line no.(simillar to stack trace)
    I don't unserstand why we have to use non debugger version in production environment. Is any advantage of having non debugger version in production environment?
    Regards,
    Thiru

    Well, the non-debugger version is much faster, and, because it does not show the exception dialog it is more tolerant of run-time errors.  I don't know of any way to get more details without a debugger player.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • AIR SDK 3.7.0.1410: non-debuggable SWFs can't be packaged to IPA in AOT mode

    If I compile mobile-targeted SWF without debug information (-debug=false) then trying to package to IPA in AOT mode (e.g. ipa-test, ipa-ad-hoc or ipa-app-store) gives the error:
    error 304: Initial window content is invalid
    This seems to be a critical issue. You can find a sample command-line project attached to the issue.
    By the way, I'm very curious, what is Adobe's policy on working with issues reported by the community? When I write to the forum I know that somebody from Adobe will read my message and most probably will answer. When I report a bug it looks like nobody reads it. For example you need no more than 5 minutes to fix AIR app descriptor schema because I attached the fix, but I'm not sure anybody noticed it.

    Hi Alexander
    We tried your issue with the non-debuggable SWFs and the issue is not visible in the latest pre-release build # 3.7.0.1530. Could you please verify if the issue which you reported has been resolved in this build?
    Also, thanks for reporting the bug # 3527032, we are looking into it. However, the bug should not prevent you from you from using the external hosting of secondary SWF feature.
    -Abhinav

  • VPN error "Debugger terminated thread"

    All of a sudden I am getting "Debugger terminated thread" while connecting to my office network. First it prompts for a password then
    refuses the correct one a few times. This is very urgent.
    Thanks

    Hi Gregpakes,
    There seems to be strange.
    If they are configured with the similar settings, they should all work.
    Besides, if we have configured any 3rd-party VPN software, there might be some settings that we may take care with, so better confirm with the manufacturer side.
    Another thing that may helps is try to take use of Network Monitor and the process monitor to figure out what is going on with the two VPNs.
    Process Monitor v3.1
    Microsoft Network Monitor 3.4
    Regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to filter mail from an unknown ip address?

    I keep getting spam from different email addresses, and different ip addresses that have a common look and feel.  They generally are sent from some made up name, from some made up host, and have a one line description like "Save Money today, just go to this link: http://BLAH.com".  What I find is that the in the long header "received from" usually identifies "unknown" as part of the host.  I use dreamhost and they generally mark ip addresses that they don't know as 'unknown'.  Can I use this in a email filter to eliminated all received email from an unknown IP address?

    Yes, absolutely!  But this particular message not only fails the junk mail tests, but I also have spam sieve installed and it fails spam sieve.  Remember that it has a made up return path, so it's only the intermediate receiver that knows it's from an unknown IP address, I've taken out the to: and CC:
    From:                                              Enlargement pils Free trial<[email protected]>
                                             Subject:   Jamie Lynn is a bigger **** thanBritney
                                                   Date:   April 21, 2011 8:13:23 PM PDT
                                    Return-Path:   <[email protected]>
                                    Delivered-To:   [email protected]
                                           Received:   from abcf9819d8d314 (unknown [125.99.168.200])by homiemail-mx12.g.dreamhost.com (Postfix) with SMTP id 3056B2780F1; Fri, 22Apr 2011 11:53:47 -0700 (PDT)
                                           Received:   (qmail 6083 by uid 083); Fri, 22 Apr2011 11:51:32 +0800
                                      Message-Id:   <002801cc01b1$7e83d570$7b8b8050$@org>
                                  Mime-Version:   1.0
                                 Content-Type:   multipart/alternative;boundary="----=_NextPart_000_0027_01CC01B1.7E83D570"
                                            X-Mailer:   Microsoft Office Outlook 12.0
                                   Thread-Index:   AcjidAFNNjWFusN8Rk+HXMZApSrL/w==
        Content-Language:   en-us
    The Key for all of these (I get about 20 a day which fail all spam filters and junk mail filters is that the RECIEVED: says 'unknown' that's what I'd like to filter on and I can't seem to get it to work

  • Unknown fault (-50)

    I've a problem,
    I've a lot of songs in my iTunes, but after a while the most of this songs won't start and I can't do anything with them and iTunes shows the message that there's an unknown fault (-50).
    Ipod Mini   Windows XP Pro  

    Yes, b, but Drako isn't getting a -50 error when trying to open the library. There's nothing wrong with his library if he can get info on the songs and see all the metadata. There's something wrong with his files -- now the only time I've seen this error with AAC files is with a user who's files when you looked at them had random blocks of zeroes inserted in them, which meant something (something not iTunes) was either chewing steadily through his files (i.e. a virus) or he was losing his hard drive slowly but surely and his files were getting corrupted because the physical media was going bad.
    This doesn't offer a lot of hope for Drako, but if he sends a file to the Apple engineers they will be able to determine whether its a corruption or a bug.

  • Not Able To Assign A Static IP Address To Windows 2008 64 bit Server

    Hello Experts,
    I've been trying to assign a static IP address to Windows 2008 R2 Server Virtual Box image. As soon as I assign static IP address to the image, either it hangs or says "Unidentified network".
    I'm 100% sure that I'm using correct IP address, Gateway, Subnet mask and DNS Server details. If I use same settings on other linux virtual box, it is able get that static ip address. The issue is only with Windows 2008 image.
    Here few more inputs that may help:
    - Windows 2008 image has "Bridge" adapter.
    - Host system is connected to corporate network via wired connection and NOT on VPN.
    - If I use "Obtain IP address automatically" setting, then it is able to get a dynamic IP address and internet is working fine.
    Questions:
    1. Has anyone seen this issue before ?
    2. Do I need to do any additional configuration on Windows 2008 server ?
    Thanks,
    GK

    Hi,
    Method 1: Uninstall and reinstall network drivers.
    Method 2: If you have any anti-virus software, disable them.
    You can also try set a static IP via neetsh commend.
     How to Use the NETSH Command to Change from Static IP Address to DHCP in Windows 2000
    http://support.microsoft.com/kb/257748
    Hope this helps.

  • ID de Apple By mistake I have open an apple account to unknown email address with bank details, is that a big probl ...

    ID de Apple
    By mistake I have open an apple account to unknown email address with bank details, is that a big probl ...

    But I don't remember the password from that email address.i m unable to access that mail,I don't know somebody has had already starting download from that I'd,thanks for reply,anyway,

  • Shows unknown email address in several login

    when i want to login to a website (facebook or others ) and I click on email login, it shows me a list of all my email adresses . the problem is that it shows me an unknown email address. It's not mine or my husband's. Why would list that email?

    She has her own iTunes account with her own iTunes library on a different computer, or she has her own iTunes account along with your iTunes account with the same iTunes library on the same computer?
    For the former, she can restore the iPhone with iTunes as a new iPhone with iTunes on her computer. This will make her iTunes account available on the iPhone after syncing the iPhone with her iTunes library on her computer being logged in to her iTunes account along with removing all iTunes content on the iPhone that was purchased/downloaded with your iTunes account.
    If the latter, she needs to be logged in to her iTunes account with iTunes on the computer you share when syncing the iPhone with iTunes. This should make her iTunes account available for the iTunes Store, the App Atore, and the Apple Store.

  • RWBLD60 caused a stack fault in module RWLIB60.DLL at 0167:00a40983.

    Oracle Reports Services
    Release Notes
    Release 1.0.2
    for Windows or UNIX
    October 2000
    Part No. A86271-01
    The following error is generated when trying to get a comma delimited text output report in windows 98.
    RWBLD60 caused a stack fault in module RWLIB60.DLL at 0167:00a40983.
    Registers:
    Appreciate if you could tell me a solution to over come this

    Hi all,
    Found the prob' or atleast the workaound for this...
    APart from setting the fill property of the canvases to Transparent, set the same for all the DB blocks too...
    Now my form is working fine in both OS.
    Regards
    -Sree Ram

Maybe you are looking for

  • Help me Identify my Model number of Satellite P500

    Hi To All,             Guys I have bought a new toshiba satellite laptop P500 Series. I am having hard time to identify it's complete model number. I have search the internet all over but still haven't found any luck in identifying it. Could anyone p

  • How can I change from indesign to Photoshop on a single app subscription

    I was recently doing magazine work which I am now no longer doing. Therefore, Photoshop would be a better fit to my needs than InDesign. Could I switch the single application subscription from one product to another? If so, how?

  • HT2736 What if I have forgotten my answers for the questions

    I forgot my answer for my questions

  • Print BIG Problem

    i want to convert the Component (Such asJTable, JLabel, JTextArea...) into Graphics or Image and print out in Mulit-page with PrintPreview. My Problem is : 1. How to Convert From Component into Graphics / Image 2. Code for print(Graphics g........).

  • Help: Syncing Curve 8330 with Mac OS 10.4!

    Hi... I posted something months ago, but never got an answer -- and REALLY need to fix this! Got Curve 8330s for my mother and myself in 08/2009 -- I have a PC, she has a Mac with OS 10.4 (Tiger).  She has NEVER been able to sync her BB with her Mac.