Tagged Questions
0
votes
4answers
63 views
look for a API/function which is like assert() without abort in C
the assert() function can print the error and where the error happens, but it will also abort the function.
I want to have a assert() function without aborting. I only hope to print the error, the ...
0
votes
1answer
53 views
How to assert that memory is freed
I have a function in which there is a free of memory.
and I want after calling this function assert that the function has freed the given memory.
And I could not change any thing in this function.
...
0
votes
2answers
63 views
Does the assert() in assert.h in the C standard library support some sort of failed assertion handler?
Normally when you call assert(foo()) and the assertion fails, the program automatically aborts. Is there any way to add some sort of handler that can clean up some resources before exiting?
4
votes
3answers
272 views
Is it evil to redefine assert?
Is it evil to redefine the assert macro?
Some folks recommend using your own macro ASSERT(cond) rather than redefining the existing, standard, assert(cond) macro. But this does not help if you have ...
5
votes
3answers
117 views
C compiler asserts: how to dynamically use them wherever the expression is fixed?
My code makes extensive use of compiler asserts like this to flag errors at build time in preference to run time, and to improve performance by not executing asserts at run time.
#define ...
1
vote
1answer
85 views
Changing From Assert Function in C To If Statement
I have found some code online for red black trees, and am trying to implement it.
I do not want to use the assert function though which the original code has located here
I am getting a seg fault on ...
3
votes
2answers
159 views
assert frees memory in C++
Suppose we have a program where we allocate some memory and then we have an assert statement some lines after. If the assert statement throws and error, what happens with the allocated memory? Does it ...
4
votes
2answers
56 views
How does the following “assert_disabled()” macro work?
I see this macro appearing in many places in a code base to find if a particular field is disabled or not (0 or 1).
#define assert_disabled(e) ((void)sizeof(e))
How does sizeof help here in ...
10
votes
2answers
250 views
Reliably determine the number of elements in an array
Every C programmer can determine the number of elements in an array with this well-known macro:
#define NUM_ELEMS(a) (sizeof(a)/sizeof 0[a])
Here is a typical use case:
int numbers[] = {2, 3, 5, ...
3
votes
1answer
114 views
Redirecting the assert output from a dll, to a file
I have a C DLL called by a C# program. The DLL is full of assert() statements, none of which are assertive enough to make it to my screen. I understand this is because the assert output is written ...
2
votes
2answers
122 views
How to use assert in c dll
I am using a legacy C Dll (I have the source code) that has numerous asserts scattered through the program. The dll is being used by a C# windows app.
The problem is that the "assertion failure" ...
2
votes
5answers
210 views
Why assert macro makes use only for debug build
Why is this a common practice to have assert macro do something useful only in debug configuration? If it exists to test invariants and detect coding bugs, then would not it be easier to go ahead and ...
4
votes
5answers
238 views
Any benefit of using assert instead of using a simple “if” ?
Given this code :
#include <stdio.h>
#include <assert.h>
void print_number(int* somePtr) {
assert (somePtr!=NULL);
printf ("%d\n",*somePtr);
}
int main ()
{
int a=1234;
int * b ...
3
votes
2answers
230 views
Catching assert() with side effects
We have several moderately sized C code bases that receive commits from developers with a variety of experience levels. Some of the less disciplined programmers commit assert() statements with side ...
1
vote
2answers
251 views
Crashing threads with *(int*)NULL = 1; problematic?
I found this in a multi-threaded c application. The authors commented that it's used to make a thread crash in a custom assert function. GCC is fine with it, but clang issues the following warning:
...
2
votes
1answer
122 views
bitfields not working as expected in an union
Could anyone please tell me why is the assert failing ?
FYI: I'm compiling this using gcc 4.6.1 on a 64-bit linux machine.
typedef union cpu_register {
uint64 _64;
uint32 _32;
uint16 ...
9
votes
2answers
347 views
Is there ANY way to compare two void pointers to assert the same type in C?
I am learning C and attempting a crude implementation of a linked list in C. Long story short I have a struct containing only a void pointer(element) and another pointer to the next node.(code to ...
1
vote
3answers
350 views
Why NDEBUG instead of RELEASE?
The standard C assert macro is disabled when the macro NDEBUG is defined, meaning "Not debug". This leads to really awful double negative cases like #ifndef NDEBUG //DebuggingCode #endif. It seems ...
1
vote
2answers
2k views
Android NDK assert.h problems
First one - is what NDEBUG somehow already defined by default, so asserts don't work until you #undef it.
Second one - they do they work, but i receive no logging in DDMS.
If there is some android ...
11
votes
4answers
2k views
Where should assert() be used in C resp. C++?
What are the places we should use the assert() function specifically? If it's a situation like determining if an integer value is greater than zero or a pointer is null, we can simply use a private ...
5
votes
8answers
247 views
Is using assert() for production not favored over if..else.. blocks?
I am finding that using assert(...) makes my code shorter and easier to read, as opposed to lengthy if..else.. blocks. However, are there good technical reasons not to use assert(...) in shipping ...
0
votes
2answers
334 views
printf before assert doesn't work
I think I've seen this issue before and I bet there's better solution out there so asking..
During debugging I found that any printf before assert don't work well. They're simply not printed most of ...
1
vote
3answers
241 views
Assertion fails after using memcpy()
I have the following code, where the assertion fails. Can anyone explain me why?
double *E = (double *) malloc(sizeof(double) * voxelSpaceSize);
double *E_new = (double *) malloc(sizeof(double) * ...
2
votes
3answers
85 views
Are there global asserts in C?
Say I have a program where the value of an integer i should never be negative. Is there a way I can insert a global assert(i>=0) such that whenever i becomes negative an error is reported. This can ...
1
vote
1answer
242 views
assert, -NDEBUG and segmentation fault
I have quite a large piece of code, that works well in a development version, with many assert() in the code. I disabled assertions with -DNDEBUG directive passed to g++, and now my code breaks with ...
2
votes
3answers
322 views
Howto combine unit testing with assert()
Suppose that the preconditions of my object's functions are checked with assert(). How can I then, without ripping my hair off in the process, write meaningful unit tests that catches the precondition ...
5
votes
4answers
2k views
assert() with message
I saw somewhere assert used with a message in the following way:
assert(("message", condition));
This seems to work great, except that gcc throws the following warning:
warning: left-hand operand ...
9
votes
5answers
6k views
how to completely disable assertion
I have my code full of call to assert(condition).
In the debug version I use g++ -g exploiting my assertion.
With my surprise I can see assertion working also in my release version, the one compiled ...
1
vote
2answers
704 views
Checking enum values at compile time
I'd like to check static initalizers at compile time. I'm implementing the macro CASSERT() from this question.
Now, I have this "strange" situation
typedef enum
{
EQADC_CHAN_A_00 = 0,
...
2
votes
1answer
328 views
C++ assert() fails without giving any error message, or line where it failed
I am having a strange problem in my code. I have many asserts scattered around the code and all have been working fine. Whenever an assert failed I got a message giving me line number of where the ...
1
vote
2answers
529 views
Will a child process send SIGCHLD on abort()?
If an application does a fork() and the child dies with an abort() (due to failing an assert()), will the parent process receive a SIGCHLD?
If it's relevant this is on Debian 4 (gcc version 4.1.2).
2
votes
3answers
393 views
How to use assert to test for string
I'm currently trying to test a strcat() function that I wrote myself. Instead of printing the outputs and checking them line by line manually, I've decided to use assert from assert.h. The problem is ...
14
votes
4answers
6k views
Static assert in C
What's the best way to achieve compile time static asserts in C (not C++), with particular emphasis on GCC?
20
votes
3answers
741 views
Am I misunderstanding assert() usage?
I was taking a look at the assert() reference page and I got stuck while I read the given example:
/* assert example */
#include <stdio.h>
#include <assert.h>
int main ()
{
FILE * ...
14
votes
4answers
1k views
When assert() fails, what is the program exit code?
When an assert() call fails, what is the exit code used, and where is it documented?
1
vote
1answer
301 views
IOKit header assert.h gone?
I want to get the hardware address of my mac's ethernet card. In all samples I saw in include on IOKit/assert.h . Which doesn't seem to exist on my system. GCC throws an error saying he doesn't know ...
1
vote
2answers
1k views
C/C++ full file path in assert macro
I am wondering if it's possible to display full file path using the assert macro?
I cannot specify full file path in compilation command, is there still a way to do it?
My debug environment is ...
1
vote
2answers
697 views
Windows: preventing assert() failures from opening the debug popup
How can I prevent the debug popup window from appearing when an assertion fails on a Windows machine? The app I'm writing is console based and I'm using assert() to test certain things when it's ...
4
votes
3answers
139 views
Safety nets in complex multi-threaded code?
As a developer who has just finished writing thousands of lines of complex multi-threaded 'C' code in a project, and which is going to be enhanced, modified etc. by several other developers unfamiliar ...
3
votes
4answers
3k views
How to use a C assert to make the code more secure?
Reading misc. tutorials related to SDL development I've found two different examples, doing the same thing, but in a different manner. I was wondering which of the two are you considering to be ...
2
votes
7answers
909 views
Is ASSERT redundant?
ASSERT(pointer);
pointer->x;
In this code, the ASSERT seems to be redundant. If the pointer is NULL, pointer->x will fail anyway. Is my argument correct?
102
votes
21answers
9k views
Is assert evil? [closed]
The Go language creators write:
Go doesn't provide assertions. They are undeniably convenient, but our experience has been that programmers use them as a crutch to avoid thinking about proper ...
4
votes
11answers
2k views
Assisting in avoiding assert… always!
In C and C++ assert is a very heavyweight routine, writing an error to stdout and terminating the program. In our application we have implemented a much more robust replacement for assert and given it ...
10
votes
5answers
3k views
Continue to debug after failed assertion on Linux? [C/C++]
When an assertion fails with Visual C++ on Windows, the debugger stops, displays the message, and then lets you continue (or, if no debugging session is running, offers to launch visual studio for ...
0
votes
6answers
2k views
C Compile-Time assert with constant array
I have a very big constant array that is initialized at compile time.
typedef enum {
VALUE_A, VALUE_B,...,VALUE_GGF
} VALUES;
const int arr[VALUE_GGF+1] = { VALUE_A, VALUE_B, ... ,VALUE_GGF};
I ...
25
votes
6answers
21k views
what is the assert function
I've been studying some OpenCV tutorials and came across with the assert function—what does it do?
2
votes
7answers
439 views
C/C++ an int value that isn't a number?
Can this ever happen ?
3 asserts, where one should activate.
int nr = perform_calc();
assert( nr == 0);
assert( nr > 0);
assert( nr < 0);
Can there be a case when the program doesn't activate ...
6
votes
3answers
2k views
What does “#define assert(exp) ((void) 0)” do?
I came across this preprocessor definition while reading the source code in Windows Research Kernel (WRK) 1.2:
#define assert(exp) ((void) 0)
What does this code do? Why is it defined?
5
votes
7answers
6k views
How to put assert into release builds in C/C++
I need to only run ship build and I need to assert on certain condition in release build to see if the problem is fixed. How do I do it?
4
votes
4answers
1k views
Can I set Visual Stdio 2005 to ignore assertions in a specific region of code while debugging
Aaargh!
OK, here's the scenario. I'm debugging my own app (C/C++) which is using some library developed by another team in the company. An assertion fails when my code generates some edge case. Its a ...

