This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I am chasing an exception which is thrown from a part of code which is added by the compiler after each call to new. It's the standard C++ new, which should get some memory from the heap and call the constructor of the class. We are running VxWorks 5.5.1 with [...] read more
I am attempting to run the following sample Android program that prints out the size of a function. #include <stdio.h> extern unsigned char func_start; extern unsigned char func_end; int func(void) __attribute__((section(".func"))); int func(void) { return 0; } int main(int argc, char **argv) { size_t func_size = &func_end - &func_start; printf("%zu\n", [...] read more