LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Code is Crashing with FATAL RUN-TIME ERROR: General Protection Fault

Hi,

 

I have upgraded one of the software which written in CVI5.0 to CVI 2017. 

While running the code in CVI 2017 I am getting an error in between as below:

"FATAL RUN-TIME ERROR: Unknown source position, thread id 2376: A non-debuggable thread caused a 'General Protection' fault at address 0x00000001. No source line information is available."

 

Can anyone help me to understand what is this fault and why its occurring after upgrade. How I can resolve this issue?

0 Kudos
Message 1 of 26
(2,966 Views)

5.0 to 2017 is a huge jump for a single-pass upgrade!

 

Are you just trying to run the old executable in the new target machine or have you recompiled the source? If the latter case: have you recompiled all of the sources? Are you using some external libraries / DLL without ugrading or recompiling them as well?

Does the error occurs while running in the IDE in debug mode or in the executable?

If in the IDE, please check that Run >> Break on >> Library Errors menu option is checked.

 

GPF errors in non-debuggable threads are hard to address and require some perseverance and a bit of a work to deep into...

Ultimately you may be getting the error in an external object you are using (system or third-party library or so) that you are not able to debug but you should be able to locate the instruction that is causing the error by adding some tracing inside your code; I mean adding some DebugPrintf or better writing some info to a file after a single or a group of instructions just to let you know wich part of the code executed succesfully: with a few attempts you should be able to locate the exact place in the code where the error originates.



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 2 of 26
(2,953 Views)

This last hint may not be applicable to your actual situation but I'll give it to you anyway.

Take a look at the events stored by the OS: if there are events recorded before the fatal one that give you an address in the code, you may cross-check that information with the map file that can be generated in compilation (Build >> Target settings >> Generate Map File checkbox) to help delimiting the problematic area of code.



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 3 of 26
(2,947 Views)

I second everything that Roberto said (as usual!). I'll add one thing: when you recompile, enable ALL the warnings in the compiler and check them out, only disable those that (you think) are truly innocent. When going large version changes some things that were admissible sometimes cause issues.

 

PS: Roberto, what are those "stored event", I'm not familiar with this debugging technique. Something out of the Windows log file(s) ?

Message 4 of 26
(2,942 Views)

@gdargaud  ha scritto:

PS: Roberto, what are those "stored event", I'm not familiar with this debugging technique. Something out of the Windows log file(s) ?


Yes: Windows OS files tons of log messages that you can see (and search/filter/export...) using the Event Viewer utility. Crashes are stored as error messages with the name of the crashing program (the CVI app in this case) together with some additional informations like the error code, module where it was found,  and the memory offset from program start which you can match with application map file.

Unfortunately if the error originates out of your application (and source files) there is little you can do...



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 5 of 26
(2,927 Views)

I have identified from which function these fault is generating. From one of the file we are calling function from other file. It is executing that function. But after that its throwing this error. Not sure whether its happening while returning value. 

 

Please find the function below.

 

int TX_FUNC TX_RunPrePostTest (
tTestData *data,
tTestError *err,
int isMetaTest,
int isPreTest)
{

Boolean result;
LLNode *theTest;
int (TX_FUNC *theTestFuncPtr) (char *parameters, tTestData *data, tTestError *err);

if (isPreTest) {
if (isMetaTest)
theTest = gTXEngine.hMetaPreTest;
else
theTest = gTXEngine.hSeqPreTest;
if (theTest == NULL)
return NO_ERROR;
theTestFuncPtr = theTest->hPreTest;
} else {
if (isMetaTest)
theTest = gTXEngine.hMetaPostTest;
else
theTest = gTXEngine.hSeqPostTest;
if (theTest == NULL)
return NO_ERROR;
theTestFuncPtr = theTest->hPostTest;
}

/**/
/* If you are going to actually execute, verify the test status.
/**/

if (theTestFuncPtr == NULL)
return TX_ReportEngineError(ERR_TEST_NOT_VERIFIED,theTest->funcName,
theTest->fileName);

/**/
/* Execute Pre/Post Test.
/**/
data->modPath = TX_GetFileDir(theTest->fileName);
data->modFile = TX_GetBaseFileName(theTest->fileName);
if (theTest->parameters != NULL)
data->inBuffer = TX_StrDup(theTest->parameters);

result = (theTestFuncPtr)
(theTest->parameters, data, err);

// Good god

free(data->modPath);
free(data->modFile);

if (err->errorFlag) {
if (isPreTest) {
if (isMetaTest) {
err->errorLocation = IN_META_PRETEST;
return TX_ReportEngineError(ERR_METAPRETEST_RUN_TIME,
theTest->funcName,theTest->fileName);
} else {
err->errorLocation = IN_SEQ_PRETEST;
return TX_ReportEngineError(ERR_SEQPRETEST_RUN_TIME,
theTest->funcName,theTest->fileName);
}
} else {
if (isMetaTest) {
err->errorLocation = IN_META_POSTTEST;
return TX_ReportEngineError(ERR_METAPOSTTEST_RUN_TIME,
theTest->funcName,theTest->fileName);
} else {
err->errorLocation = IN_SEQ_POSTTEST;
return TX_ReportEngineError(ERR_SEQPOSTTEST_RUN_TIME,
theTest->funcName,theTest->fileName);
}
}
}

if (!result) {
if (isPreTest) {
if (isMetaTest) {
err->errorLocation = IN_META_PRETEST;
return TX_ReportEngineError(ERR_META_PRETEST_FAIL);
} else {
err->errorLocation = IN_SEQ_PRETEST;
return TX_ReportEngineError(ERR_SEQUENCE_PRETEST_FAIL);
}
} else {
if (isMetaTest) {
err->errorLocation = IN_META_POSTTEST;
return TX_ReportEngineError(ERR_META_POSTTEST_FAIL);
return TX_ReportEngineError(ERR_META_POSTTEST_FAIL);
} else {
err->errorLocation = IN_SEQ_POSTTEST;
return TX_ReportEngineError(ERR_SEQUENCE_POSTTEST_FAIL);
}
}
}

if (!result) {

err->errorLocation = IN_SEQ_PRETEST;
return TX_ReportEngineError(ERR_SEQUENCE_PRETEST_FAIL);
}

MessagePopup("Test", "Function call success");

return NO_ERROR;
} /* END TX_RunPrePostTest () */

 

0 Kudos
Message 6 of 26
(2,915 Views)

I found that any function call from that file causes this fault. In the header file it defined as below:

 

#ifndef TX_FUNC
#ifdef _NI_mswin16_
#define TX_FUNC
#else
#define TX_FUNC __stdcall
#endif
#endif

#ifndef TEST_FUNC_C
#ifdef _NI_mswin16_
#define TEST_FUNC_C
#else
#if defined(__WATCOMC__) || defined(_NI_WC_)
#define TEST_FUNC_C
#else
#define TEST_FUNC_C __cdecl
#endif
#endif
#endif

#ifndef TX_CDECL
#ifdef _NI_mswin16_
#define TX_CDECL
#else
#if defined(__WATCOMC__) || defined(_NI_WC_)
#define TX_CDECL
#else
#define TX_CDECL __cdecl
#endif
#endif
#endif

#ifndef TX_STDCALL
#ifdef _NI_mswin16_
#define TX_STDCALL
#else
#define TX_STDCALL __stdcall
#endif
#endif

 

Please let me know if I have to modify anything in code

 

0 Kudos
Message 7 of 26
(2,906 Views)

I see no reason for a GPF to raise when returning from a function. Are the free () calls legit? Are you sure the code passes those lines? Do you see the MessagePopup at the end of the function? 

 

As an additional hint, I would execute Options >> Preprocess Source File menu option just to be sure of how TX_FUNC is evaluated in your environment, but if the function terminates successfully this should not be the cause of your problem.

 

What do you mean by "any function call from that file causes this fault"?



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 8 of 26
(2,905 Views)

I can see message popup at the end of function. That's how I identified its completed execution.

 

I cant find Options >> Preprocess Source File in CVI Tool

 

"any function call from that file causes this fault" - Means  I used another function from the same source file. But got same issue.

0 Kudos
Message 9 of 26
(2,894 Views)

That code is very difficult to read with no formatting. Yes I know that the forum likes to align text on the start of the line. That is why it also supports a code display box. But that feature got unfortunately hidden last time they did a complete forum software update.

 

In the icon list above the message box you see the ... ellipsis. If you click on that you get an additional number of icons and one of them looks like </>. When you click on that it adds a code box to your message that you can double click to enter your code and it should then maintain the indents as you had them in your copy-pasted text. And then you can select that the box displays C code and that will even add some syntax highlighting in the final rendering.

 

That all said your further explanations are very confusing. How do you mean "all functions" cause a crash. What functions? How can all those functions crash in that code but you still get to the end of your function where it displays the message popup?

Rolf Kalbermatter
My Blog
0 Kudos
Message 10 of 26
(2,889 Views)