Parallel
mem_err.txt
Associated article: Removing Memory Errors from 64-Bit Platforms
Tags: Database C/C++ Parallel
Published source code accompanying the article by Rich Newman in which he discuss how you handle potential memory errors before porting to 64-bit platforms.
Removing Memory Errors from 64-bit Platforms
by Rich Newman
Example 1:
main(argc, argv) /* line 1 */
int argc; /* line 2 */
char *argv[]; /* line 3 */
{ /* line 4 */
int c=0; /* line 5 */
/* line 6 */
if(atoi(argv[1]) < 3){ /* line 7 */
printf("Got less then 3n"); /* line 8 */
if(atoi(...


