From fd4ab2ec81efae9e6a88c1ab90fce8d5e052a033 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 5 May 1993 15:46:15 +0000 Subject: [PATCH] dont enable deadlock prevention if we are in post message --- src/ca/access.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ca/access.c b/src/ca/access.c index 9bd224802..30354efee 100644 --- a/src/ca/access.c +++ b/src/ca/access.c @@ -82,6 +82,8 @@ /* 111992 joh added new arg to db_start_events() call */ /* 120992 joh switched to dll list routines */ /* 122192 joh increment outstanding ack count */ +/* 050593 joh dont enable deadlock prevention if we are in */ +/* post message */ /* */ /*_begin */ /************************************************************************/ @@ -106,7 +108,7 @@ /************************************************************************/ /*_end */ -static char *sccsId = "$Id$\t$Date$"; +static char *sccsId = "@(#)access.c 1.24\t2/19/93"; /* * allocate error message string array @@ -253,7 +255,7 @@ unsigned extsize; * dont allow client to send enough messages to * to get into a deadlock */ - if(piiu->outstanding_ack_count > ((unsigned)0)){ + if(piiu->outstanding_ack_count > ((unsigned)0) && !post_msg_active){ unsigned max1; unsigned size; int rcva;