From 2319171bbf99580c7f8ba064f0830eecfb231fda Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Wed, 3 Feb 2016 00:22:10 +0100 Subject: [PATCH] Additional debug informations --- src/int/cint.c | 4 ++++ 1 file changed, 4 insertions(+) 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) { -- 2.30.2