summaryrefslogtreecommitdiffstats
path: root/lib/base/system.cpp
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2005-02-23 18:19:13 +0000
committerRob Crittenden <rcritten@redhat.com>2005-02-23 18:19:13 +0000
commit21305115e547133a0122c44b7e9956ef78dc94be (patch)
treeb72f28ba737b35c0f13003478f5e777146789ef3 /lib/base/system.cpp
parentf64e827b9c3011b07b5d78dd52466236dc77346e (diff)
downloadds-21305115e547133a0122c44b7e9956ef78dc94be.tar.gz
ds-21305115e547133a0122c44b7e9956ef78dc94be.tar.xz
ds-21305115e547133a0122c44b7e9956ef78dc94be.zip
149510
Strip down ACL code and support libraries to the bare minimum.
Diffstat (limited to 'lib/base/system.cpp')
-rw-r--r--lib/base/system.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/base/system.cpp b/lib/base/system.cpp
index e58538b4..d138b400 100644
--- a/lib/base/system.cpp
+++ b/lib/base/system.cpp
@@ -10,7 +10,7 @@
*/
#include "netsite.h"
-#include "base/nsassert.h"
+#include "prlog.h"
#include "base/ereport.h"
#ifdef XP_WIN32
@@ -52,6 +52,7 @@ static int thread_malloc_key = -1;
#define DEBUG_FREE_CHAR 'X'
#endif /* DEBUG_MALLOC */
+
/* On NT, the server version string is not statically encoded based
* upon a product compile define but dynamically set by the server
* exe at startup.
@@ -113,14 +114,14 @@ NSAPI_PUBLIC void system_free(void *ptr)
#if defined(MALLOC_POOLS) && defined(MCC_HTTPD) && defined(THREAD_ANY)
pool_free(MALLOC_KEY, ptr);
#else
- NS_ASSERT(ptr);
+ PR_ASSERT(ptr);
free(ptr);
#endif
}
NSAPI_PUBLIC char *system_strdup(const char *ptr)
{
- NS_ASSERT(ptr);
+ PR_ASSERT(ptr);
#if defined(MALLOC_POOLS) && defined(MCC_HTTPD) && defined(THREAD_ANY)
return pool_strdup(MALLOC_KEY, ptr);
#else
@@ -202,7 +203,7 @@ NSAPI_PUBLIC void system_free_perm(void *ptr)
char *baseptr, *cptr;
int index;
- NS_ASSERT(ptr);
+ PR_ASSERT(ptr);
cptr = baseptr = ((char *)ptr) - DEBUG_MARGIN - 2*sizeof(int);
@@ -239,7 +240,7 @@ NSAPI_PUBLIC void system_free_perm(void *ptr)
NSAPI_PUBLIC char *system_strdup_perm(const char *ptr)
{
#ifndef DEBUG_MALLOC
- NS_ASSERT(ptr);
+ PR_ASSERT(ptr);
return strdup(ptr);
#else
int len = strlen(ptr);