src/server/pool.h

changeset 14
b8bf95b39952
parent 13
1fdbf4170ef4
child 15
cff9c4101dd7
equal deleted inserted replaced
13:1fdbf4170ef4 14:b8bf95b39952
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 #ifndef NETSITE_H
56 //include "netsite.h"
57 #include "nsapi.h"
58 #include "nspr.h"
59 #endif /* !NETSITE_H */
60
61 #ifndef BASE_PBLOCK_H
62 //include "pblock.h"
63 #endif /* !BASE_PBLOCK_H */
64
65 #ifndef BASE_SESSION_H
66 //#include "session.h"
67 #endif /* !BASE_SESSION_H */
68
69 #ifndef FRAME_REQ_H
70 //include "frame/req.h"
71 #endif /* !FRAME_REQ_H */
72
73 /* --- Begin function prototypes --- */
74
75 #ifdef INTNSAPI
76
77 NSPR_BEGIN_EXTERN_C
78
79 NSAPI_PUBLIC int INTpool_init(pblock *pb, Session *sn, Request *rq);
80
81 #ifdef DEBUG_CACHES
82 NSAPI_PUBLIC int INTpool_service_debug(pblock *pb, Session *sn, Request *rq);
83 #endif
84
85 NSAPI_PUBLIC pool_handle_t *INTpool_create(void);
86
87 NSAPI_PUBLIC void *INTpool_mark(pool_handle_t *pool_handle);
88
89 NSAPI_PUBLIC void INTpool_recycle(pool_handle_t *pool_handle, void *mark);
90
91 NSAPI_PUBLIC void INTpool_destroy(pool_handle_t *pool_handle);
92
93 NSAPI_PUBLIC int INTpool_enabled(void);
94
95 NSAPI_PUBLIC void *INTpool_malloc(pool_handle_t *pool_handle, size_t size );
96
97 NSAPI_PUBLIC void INTpool_free(pool_handle_t *pool_handle, void *ptr );
98
99 NSAPI_PUBLIC
100 void *INTpool_calloc(pool_handle_t *pool_handle, size_t nelem, size_t elsize);
101
102 NSAPI_PUBLIC
103 void *INTpool_realloc(pool_handle_t *pool_handle, void *ptr, size_t size );
104
105 NSAPI_PUBLIC
106 char *INTpool_strdup(pool_handle_t *pool_handle, const char *orig_str );
107
108 #ifdef DEBUG
109 NSAPI_PUBLIC void INTpool_assert(pool_handle_t *pool_handle, const void *ptr);
110 #endif
111
112 NSPR_END_EXTERN_C
113
114 #define pool_init INTpool_init
115
116 #ifdef DEBUG_CACHES
117 #define pool_service_debug INTpool_service_debug
118 #endif /* DEBUG_CACHES */
119
120 #ifdef DEBUG
121 #define POOL_ASSERT(pool, ptr) INTpool_assert(pool, ptr);
122 #else
123 #define POOL_ASSERT(pool, ptr)
124 #endif
125
126 #define pool_create INTpool_create
127 #define pool_mark INTpool_mark
128 #define pool_recycle INTpool_recycle
129 #define pool_destroy INTpool_destroy
130 #define pool_enabled INTpool_enabled
131 #define pool_malloc INTpool_malloc
132 #define pool_free INTpool_free
133 #define pool_calloc INTpool_calloc
134 #define pool_realloc INTpool_realloc
135 #define pool_strdup INTpool_strdup
136
137 #endif /* INTNSAPI */
138
139 #endif /* !BASE_POOL_H_ */

mercurial