summaryrefslogtreecommitdiff
path: root/misc/netware
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-12-02 21:16:45 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-12-02 21:16:45 +0000
commit9351ccfcf56e4aa710c505a6efbef11d2ec1f7b3 (patch)
tree1fd7358011381db61df9f3e2066a35565ba154ae /misc/netware
parent3e3d11884126364f8bc9cf8af7ea4bed9b25fa38 (diff)
downloadlibapr-9351ccfcf56e4aa710c505a6efbef11d2ec1f7b3.tar.gz
Moving the application global data management structure to APR.hnw to
give it a wider scope. This needs to be done to handle the per-application global data in the apr_util hook APIs. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64111 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc/netware')
-rw-r--r--misc/netware/libprews.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/misc/netware/libprews.c b/misc/netware/libprews.c
index 192efa519..0818babbb 100644
--- a/misc/netware/libprews.c
+++ b/misc/netware/libprews.c
@@ -15,13 +15,6 @@
#include "apr_pools.h"
-#define MAX_PROCESSORS 128
-
-typedef struct app_data {
- int initialized;
- void* gPool[MAX_PROCESSORS];
- void* statCache[MAX_PROCESSORS];
-} APP_DATA;
/* library-private data...*/
int gLibId = -1;
@@ -216,3 +209,6 @@ void* getStatCache(int proc)
return NULL;
}
+
+
+