From: Rafał Długołęcki Date: Tue, 2 Feb 2016 23:22:10 +0000 (+0100) Subject: Additional debug informations X-Git-Tag: 3.4-b1~3 X-Git-Url: https://git.dlugolecki.net.pl/?p=vlp.git;a=commitdiff_plain;h=2319171bbf99580c7f8ba064f0830eecfb231fda Additional debug informations --- diff --git a/src/int/cint.c b/src/int/cint.c index 03bc546..300c83e 100644 --- a/src/int/cint.c +++ b/src/int/cint.c @@ -94,6 +94,7 @@ static void load(char *_filename) abend("Memory size too large (use /m option)\n"); addext(filename, ".ccd"); + fprintf(stderr, "logint: Reading static data from %s file\n", filename); if ((fp = fopen(filename, BINARYREAD)) == NULL) { fprintf(stderr, "Cannot open .ccd file\n"); endrun(10); @@ -110,6 +111,7 @@ static void load(char *_filename) ic += n; left -= n; } while (n != 0); + fprintf(stderr, "logint: Static data from %s file has been read\n", filename); /* now ic = number of words read */ fclose(fp); @@ -129,6 +131,7 @@ static void load(char *_filename) /* Read prototypes from .pcd file */ addext(filename, ".pcd"); + fprintf(stderr, "logint: Reading prototypes from %s file\n", filename); if ((fp = fopen(filename, BINARYREAD)) == NULL) { fprintf(stderr,"Cannot open .pcd file\n"); endrun(10); @@ -143,6 +146,7 @@ static void load(char *_filename) abend("Cannot read .pcd file\n"); } fclose(fp); + fprintf(stderr, "logint: Prototypes from: %s file has been read\n", filename); /* Open trace file */ if (debug) {