UNIXworkcode

1 /* 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 3 * 4 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 5 * 6 * THE BSD LICENSE 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions are met: 10 * 11 * Redistributions of source code must retain the above copyright notice, this 12 * list of conditions and the following disclaimer. 13 * Redistributions in binary form must reproduce the above copyright notice, 14 * this list of conditions and the following disclaimer in the documentation 15 * and/or other materials provided with the distribution. 16 * 17 * Neither the name of the nor the names of its contributors may be 18 * used to endorse or promote products derived from this software without 19 * specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER 25 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 28 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 */ 33 34 #ifndef BASE_POOL_H 35 #define BASE_POOL_H 36 37 #ifndef NOINTNSAPI 38 #define INTNSAPI 39 #endif /* !NOINTNSAPI */ 40 41 /* 42 * pool.h 43 * 44 * Module for handling memory allocations. 45 * 46 * Notes: 47 * This module is used instead of the NSPR prarena module because the prarenas 48 * did not fit as cleanly into the existing server. 49 * 50 * Mike Belshe 51 * 10-02-95 52 * 53 */ 54 55 // new 56 #include <cx/string.h> 57 58 #ifndef NETSITE_H 59 //include "netsite.h" 60 #include "../public/nsapi.h" 61 //include "nspr.h" 62 #endif /* !NETSITE_H */ 63 64 #ifndef BASE_PBLOCK_H 65 //include "pblock.h" 66 #endif /* !BASE_PBLOCK_H */ 67 68 #ifndef BASE_SESSION_H 69 //#include "session.h" 70 #endif /* !BASE_SESSION_H */ 71 72 #ifndef FRAME_REQ_H 73 //include "frame/req.h" 74 #endif /* !FRAME_REQ_H */ 75 76 /* --- Begin function prototypes --- */ 77 78 #ifdef INTNSAPI 79 80 #ifdef __cplusplus 81 extern "C" { 82 #endif 83 84 NSAPI_PUBLIC int INTpool_init(pblock *pb, Session *sn, Request *rq); 85 86 cxmutstr cx_strdup_pool(pool_handle_t *pool, cxmutstr s); 87 88 CxAllocator* pool_allocator(pool_handle_t *pool); 89 90 #ifdef DEBUG_CACHES 91 NSAPI_PUBLIC int INTpool_service_debug(pblock *pb, Session *sn, Request *rq); 92 #endif 93 94 /* 95 NSAPI_PUBLIC pool_handle_t *INTpool_create(void); 96 97 NSAPI_PUBLIC void *INTpool_mark(pool_handle_t *pool_handle); 98 99 NSAPI_PUBLIC void INTpool_recycle(pool_handle_t *pool_handle, void *mark); 100 101 NSAPI_PUBLIC void INTpool_destroy(pool_handle_t *pool_handle); 102 103 NSAPI_PUBLIC int INTpool_enabled(void); 104 105 NSAPI_PUBLIC void *INTpool_malloc(pool_handle_t *pool_handle, size_t size ); 106 107 NSAPI_PUBLIC void INTpool_free(pool_handle_t *pool_handle, void *ptr ); 108 109 NSAPI_PUBLIC 110 void *INTpool_calloc(pool_handle_t *pool_handle, size_t nelem, size_t elsize); 111 112 NSAPI_PUBLIC 113 void *INTpool_realloc(pool_handle_t *pool_handle, void *ptr, size_t size ); 114 115 NSAPI_PUBLIC 116 char *INTpool_strdup(pool_handle_t *pool_handle, const char *orig_str ); 117 118 */ 119 120 #ifdef DEBUG 121 NSAPI_PUBLIC void INTpool_assert(pool_handle_t *pool_handle, const void *ptr); 122 #endif 123 124 #ifdef __cplusplus 125 } 126 #endif 127 128 #define pool_init INTpool_init 129 130 #ifdef DEBUG_CACHES 131 #define pool_service_debug INTpool_service_debug 132 #endif /* DEBUG_CACHES */ 133 134 #ifdef DEBUG 135 #define POOL_ASSERT(pool, ptr) INTpool_assert(pool, ptr); 136 #else 137 #define POOL_ASSERT(pool, ptr) 138 #endif 139 140 #endif /* INTNSAPI */ 141 142 #endif /* !BASE_POOL_H_ */ 143