Skip to content

Commit

Permalink
innfeed: Revert an old commit from 1999
Browse files Browse the repository at this point in the history
The additions of commit bb5cef9
on May 1999 had already been carried by commit
6546905 on November 1998.

Remove it as the logging was done twice.
  • Loading branch information
Julien-Elie committed Dec 22, 2024
1 parent 53f88a5 commit 637b88f
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions innfeed/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -1412,18 +1412,8 @@ printHostInfo(Host host, FILE *fp, unsigned int indentAmt)
fprintf(fp, "%s %p\n", indent, (void *) qe->article);
#endif
}

fprintf(fp, "%s }\n", indent);
fprintf(fp, "%s DEFERRED articles {\n", indent);
for (qe = host->deferred; qe != NULL; qe = qe->next) {
#if defined(INNFEED_DEBUG)
printArticleInfo(qe->article, fp, indentAmt + INDENT_INCR);
#else
fprintf(fp, "%s %p\n", indent, (void *) qe->article);
#endif
}

fprintf(fp, "%s }\n", indent);
fprintf(fp, "%s DEFERRED articles {\n", indent);
for (qe = host->deferred; qe != NULL; qe = qe->next) {
#if defined(INNFEED_DEBUG)
Expand Down Expand Up @@ -3615,16 +3605,6 @@ queuesToTape(Host host)
procArtsToTape++;
tapeTakeArticle(host->myTape, art);
}

while ((art = remHead(&host->deferred, &host->deferredTail)) != NULL) {
host->deferLen--;
host->artsHostClose++;
host->gArtsHostClose++;
host->artsToTape++;
host->gArtsToTape++;
procArtsToTape++;
tapeTakeArticle(host->myTape, art);
}
}


Expand Down

0 comments on commit 637b88f

Please sign in to comment.