At my last company I had a global variable containing the current error message (much like errno, only a descriptive string rather than an integer). Whenever an error was detected, I would set it to an appropriate message and return -1. A caller would detect the failure and print out the global error descriptor. (This was in C, btw.)
When running under the debugger, it was useful to have an easily recognizable value that would indicate that no error had happened yet, so I initialized it to "Life is good".
Unsurprisingly, I ended up with a number of routines that didn't bother to set the error message, but still returned -1. So it became fairly common to see messages like:
Fatal error, unable to continue: Life is good
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.