¡@

Home 

c++ Programming Glossary: reporting

weird gdb message when debugging C++ program

http://stackoverflow.com/questions/10621461/weird-gdb-message-when-debugging-c-program

compiler you installed from macports. The error message is reporting that GDB doesn't understand some of the debugging information..

C++: std::string in a multi-threaded program

http://stackoverflow.com/questions/1661154/c-stdstring-in-a-multi-threaded-program

I get random segfaults all the time. Valgrind is now reporting invalid memory accesses deep within libstdc in the std string..

Is assert evil? [closed]

http://stackoverflow.com/questions/1854302/is-assert-evil

a crutch to avoid thinking about proper error handling and reporting. Proper error handling means that servers continue operation.. after non fatal errors instead of crashing. Proper error reporting means that errors are direct and to the point saving the programmer..

Microsecond resolution timestamps on Windows

http://stackoverflow.com/questions/2414359/microsecond-resolution-timestamps-on-windows

whole system will go havoc and in general behave strangely reporting negative elapsed times slowing down etc. not just your application...

How do I find where an exception was thrown in C++?

http://stackoverflow.com/questions/2443135/how-do-i-find-where-an-exception-was-thrown-in-c

use of language constructs to separate error handling and reporting code from ordinary code. The catch block can be and often is..

pinpointing “conditional jump or move depends on uninitialized value(s)” valgrind message

http://stackoverflow.com/questions/2612447/pinpointing-conditional-jump-or-move-depends-on-uninitialized-values-valgrin

visible behaviour. From the Valgrind FAQ As for eager reporting of copies of uninitialised memory values this has been suggested..

How to set a timeout on blocking sockets in boost asio?

http://stackoverflow.com/questions/291871/how-to-set-a-timeout-on-blocking-sockets-in-boost-asio

Specify the receiving or sending timeouts until reporting an error. The argument is a struct timeval. If an input or output..

Segfaults in malloc() and malloc_consolidate()

http://stackoverflow.com/questions/3100193/segfaults-in-malloc-and-malloc-consolidate

be in malloc . It's slightly strange that Valgrind is not reporting any errors but there are some errors that the default Memcheck..

memory leak detecting in C++ with/without Visual Leak Detector

http://stackoverflow.com/questions/3564582/memory-leak-detecting-in-c-with-without-visual-leak-detector

using Visual Leak Detector. I have a doubt about the reporting of the leaks. I am expecting a file name with a line number.. the application but to be able to do this you need a leak reporting mechanism at the end of your application. This means that if.. RunTime reports leaks at the end but has no decent way of reporting call stacks. Its method of intercepting calls to new delete..

How to throw good exceptions?

http://stackoverflow.com/questions/556255/how-to-throw-good-exceptions

conditions in which a function has no other way of reporting these conditions. If you decide to make it a part of the promise..

Is there a general consensus in the C++ community on when exceptions should be used? [closed]

http://stackoverflow.com/questions/5609503/is-there-a-general-consensus-in-the-c-community-on-when-exceptions-should-be-u

it's all about concessions. So keep 2 things in mind Error reporting is part of the API APIs should be designed with ease of use.. to refactor your API when it becomes clear that the error reporting mechanism elected at the time of crafting it is no longer appropriate...

__FILE__, __LINE__, and __FUNCTION__ usage in C++

http://stackoverflow.com/questions/597078/file-line-and-function-usage-in-c

concerned with giving the user bad data due for example reporting the incorrect line number or function as a result of optimization..

Portable C++ Stack Trace on Exception

http://stackoverflow.com/questions/616653/portable-c-stack-trace-on-exception

to function names. Yes none of these are portable but the reporting framework can be and it usually takes less than a day or two..

What exactly is “broken” with Microsoft Visual C++'s two-phase template instantiation?

http://stackoverflow.com/questions/6273176/what-exactly-is-broken-with-microsoft-visual-cs-two-phase-template-instanti

during instantiation of 'S S ' and bind it to 'foo int ' reporting an error in the initialization of 'i' The above code is supposed..

Can the “Application Error” dialog box be disabled?

http://stackoverflow.com/questions/735170/can-the-application-error-dialog-box-be-disabled

share improve this question Use Disable error reporting as Mr. Gently suggests. See also this PC World article . If..

track C++ memory allocations

http://stackoverflow.com/questions/910172/track-c-memory-allocations

. Check the following links for more details Heap state reporting functions Tracking heap allocation requests . Probably this..