From 69ae776409ce9f7d20f32e65aadacb977b347157 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 24 Sep 1998 20:41:49 +0000 Subject: [PATCH] supply resource id to logBadIdWithFileAndLineno() --- src/cas/generic/server.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/cas/generic/server.h b/src/cas/generic/server.h index 7928c864f..e119da478 100644 --- a/src/cas/generic/server.h +++ b/src/cas/generic/server.h @@ -29,6 +29,9 @@ * * History * $Log$ + * Revision 1.25 1998/07/08 15:38:08 jhill + * fixed lost monitors during flow control problem + * * Revision 1.24 1998/06/16 03:41:16 jhill * fixed prototype * @@ -583,11 +586,11 @@ protected: // // logBadIdWithFileAndLineno() // -# define logBadId(MP, DP, CACSTAT) \ - this->logBadIdWithFileAndLineno(MP, DP, CACSTAT, __FILE__, __LINE__) +# define logBadId(MP, DP, CACSTAT, RESID) \ + this->logBadIdWithFileAndLineno(MP, DP, CACSTAT, __FILE__, __LINE__, RESID) caStatus logBadIdWithFileAndLineno(const caHdr *mp, const void *dp, const int cacStat, const char *pFileName, - const unsigned lineno); + const unsigned lineno, const unsigned resId); private: inBuf &inBufRef;