From 291146fd4e6a377763344c2dadd01e5a63064f9b Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 5 May 1998 16:04:19 +0000 Subject: [PATCH] added lock count var --- src/ca/iocinf.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/ca/iocinf.h b/src/ca/iocinf.h index 9614ecc0f..8bea734d2 100644 --- a/src/ca/iocinf.h +++ b/src/ca/iocinf.h @@ -32,6 +32,9 @@ /************************************************************************/ /* $Log$ + * Revision 1.70 1998/04/13 19:14:34 jhill + * fixed task variable problem + * * Revision 1.69 1998/03/12 20:39:10 jhill * fixed problem where 3.13.beta11 unable to connect to 3.11 with correct native type * @@ -403,6 +406,7 @@ typedef struct caclient_put_notify{ # define local_chidlist (ca_static->ca_local_chidlist) # define lcl_buff_list (ca_static->ca_lcl_buff_list) # define lock_tid (ca_static->ca_lock_tid) +# define lock_count (ca_static->ca_lock_count) #endif /* @@ -583,9 +587,10 @@ struct CA_STATIC { ELLLIST ca_taskVarList; void *ca_evuser; void *ca_dbMonixFreeList; - int ca_lock_tid; - int ca_tid; - int recv_tid; + int ca_lock_tid; + unsigned ca_lock_count; + int ca_tid; + int recv_tid; #endif };