In this section:
This error is generated when a program violates a rule specified in an interface module. These normally check that parameters passed to system level or user functions fall within legal ranges or are otherwise valid. This behavior is different from the RETURN_FAILURE
error code, which normally indicates that the call to the function was made with valid data, but that it still returned an error for some, possibly anticipated, reason.
|
User error problems fall into many different categories. In the following example, the sqrt
function is called and passed a negative argument.
/* * File: usererr.c */ #include <math.h> main() { double q; q = sqrt(-2.0); return (0); } |
[usererr.c:10] **USER_ERROR** >> q = sqrt(-2.0); Negative number -2.000000 passed to sqrt: Stack trace where the error occurred: main() usererr.c, 10 |
Each message in this category is caused by a different problem, which should be evident from the printed diagnostic. Usually, these checks revolve around the legality of various arguments to functions. These messages can be suppressed by suppressing USER_ERROR
.