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 <ucx/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 sstr_t sstrdup_pool(pool_handle_t *pool, sstr_t s); 87 88 #ifdef DEBUG_CACHES 89 NSAPI_PUBLIC int INTpool_service_debug(pblock *pb, Session *sn, Request *rq); 90 #endif 91 92 /* 93 NSAPI_PUBLIC pool_handle_t *INTpool_create(void); 94 95 NSAPI_PUBLIC void *INTpool_mark(pool_handle_t *pool_handle); 96 97 NSAPI_PUBLIC void INTpool_recycle(pool_handle_t *pool_handle, void *mark); 98 99 NSAPI_PUBLIC void INTpool_destroy(pool_handle_t *pool_handle); 100 101 NSAPI_PUBLIC int INTpool_enabled(void); 102 103 NSAPI_PUBLIC void *INTpool_malloc(pool_handle_t *pool_handle, size_t size ); 104 105 NSAPI_PUBLIC void INTpool_free(pool_handle_t *pool_handle, void *ptr ); 106 107 NSAPI_PUBLIC 108 void *INTpool_calloc(pool_handle_t *pool_handle, size_t nelem, size_t elsize); 109 110 NSAPI_PUBLIC 111 void *INTpool_realloc(pool_handle_t *pool_handle, void *ptr, size_t size ); 112 113 NSAPI_PUBLIC 114 char *INTpool_strdup(pool_handle_t *pool_handle, const char *orig_str ); 115 116 */ 117 118 #ifdef DEBUG 119 NSAPI_PUBLIC void INTpool_assert(pool_handle_t *pool_handle, const void *ptr); 120 #endif 121 122 #ifdef __cplusplus 123 } 124 #endif 125 126 #define pool_init INTpool_init 127 128 #ifdef DEBUG_CACHES 129 #define pool_service_debug INTpool_service_debug 130 #endif /* DEBUG_CACHES */ 131 132 #ifdef DEBUG 133 #define POOL_ASSERT(pool, ptr) INTpool_assert(pool, ptr); 134 #else 135 #define POOL_ASSERT(pool, ptr) 136 #endif 137 138 #endif /* INTNSAPI */ 139 140 #endif /* !BASE_POOL_H_ */ 141