~ubuntu-branches/ubuntu/edgy/libapache2-mod-perl2/edgy

« back to all changes in this revision

Viewing changes to xs/APR/BucketAlloc/APR__BucketAlloc.h

  • Committer: Bazaar Package Importer
  • Author(s): Andres Salomon
  • Date: 2005-08-12 01:40:38 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050812014038-gjigefs55pqx4qc8
Tags: 2.0.1-3
Grr.  Really include perl.conf file; it got lost due to diff not
wanting to add an empty file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2001-2005 The Apache Software Foundation
 
2
 *
 
3
 * Licensed under the Apache License, Version 2.0 (the "License");
 
4
 * you may not use this file except in compliance with the License.
 
5
 * You may obtain a copy of the License at
 
6
 *
 
7
 *     http://www.apache.org/licenses/LICENSE-2.0
 
8
 *
 
9
 * Unless required by applicable law or agreed to in writing, software
 
10
 * distributed under the License is distributed on an "AS IS" BASIS,
 
11
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
12
 * See the License for the specific language governing permissions and
 
13
 * limitations under the License.
 
14
 */
 
15
 
 
16
#include "modperl_bucket.h"
 
17
 
 
18
#define mpxs_APR__BucketAlloc_destroy apr_bucket_alloc_destroy
 
19
 
 
20
static MP_INLINE
 
21
SV *mpxs_APR__BucketAlloc_new(pTHX_ SV *CLASS, SV *p_sv)
 
22
{
 
23
    apr_pool_t *p          = mp_xs_sv2_APR__Pool(p_sv);
 
24
    apr_bucket_alloc_t *ba = apr_bucket_alloc_create(p);
 
25
    SV *ba_sv = sv_setref_pv(NEWSV(0, 0), "APR::BucketAlloc", (void*)ba);
 
26
    mpxs_add_pool_magic(ba_sv, p_sv);
 
27
    return ba_sv;
 
28
}
 
29