You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2008/04/10 00:37:23 UTC

svn commit: r646579 - /apr/apr/trunk/include/arch/netware/apr_private.h

Author: bnicholes
Date: Wed Apr  9 15:37:22 2008
New Revision: 646579

URL: http://svn.apache.org/viewvc?rev=646579&view=rev
Log:
Static global variables are bad on NetWare. Move them into the library application data area.  

Modified:
    apr/apr/trunk/include/arch/netware/apr_private.h

Modified: apr/apr/trunk/include/arch/netware/apr_private.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/arch/netware/apr_private.h?rev=646579&r1=646578&r2=646579&view=diff
==============================================================================
--- apr/apr/trunk/include/arch/netware/apr_private.h (original)
+++ apr/apr/trunk/include/arch/netware/apr_private.h Wed Apr  9 15:37:22 2008
@@ -160,6 +160,8 @@
     rtag_t  gs_lookup_rtag;
     rtag_t  gs_event_rtag;
     rtag_t  gs_pcp_rtag;
+    void*   gs_ldap_xref_lock;
+    void*   gs_xref_head;
 } APP_DATA;
 
 int setGlobalPool(void *data);