Update of /cvsroot/naviserver/naviserver/nsd
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8198/nsd
Modified Files:
binder.c
Log Message:
Minor fixes regarding new binder support
Index: binder.c
===================================================================
RCS file: /cvsroot/naviserver/naviserver/nsd/binder.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** binder.c 2 Nov 2005 21:18:20 -0000 1.14
--- binder.c 2 Nov 2005 23:07:15 -0000 1.15
***************
*** 72,78 ****
static Tcl_HashTable preboundUnix;
! static int binderRunning;
! static int binderRequest[2];
! static int binderResponse[2];
/*
--- 72,78 ----
static Tcl_HashTable preboundUnix;
! static int binderRunning = 0;
! static int binderRequest[2] = { -1, -1 };
! static int binderResponse[2] = { -1, -1 };
/*
***************
*** 877,883 ****
pid, status);
}
- Ns_MutexLock(&lock);
binderRunning = 1;
- Ns_MutexUnlock(&lock);
}
--- 877,881 ----
|