~ubuntu-branches/ubuntu/feisty/libapache2-mod-perl2/feisty-security

« back to all changes in this revision

Viewing changes to WrapXS/Apache/Process/Process.xs

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2004-08-19 06:23:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040819062348-jxl4koqbtvgm8v2t
Tags: 1.99.14-4
Remove the LFS CFLAGS, and build-dep against apache2-*-dev (>= 2.0.50-10)
as we're backing out of the apache2/apr ABI transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * *********** WARNING **************
 
4
 * This file generated by ModPerl::WrapXS/0.01
 
5
 * Any changes made here will be lost
 
6
 * ***********************************
 
7
 * 01: lib/ModPerl/WrapXS.pm:459
 
8
 * 02: lib/ModPerl/WrapXS.pm:1053
 
9
 * 03: Makefile.PL:290
 
10
 * 04: Makefile.PL:238
 
11
 * 05: Makefile.PL:49
 
12
 */
 
13
 
 
14
 
 
15
 
 
16
#define MP_IN_XS
 
17
 
 
18
#include "mod_perl.h"
 
19
 
 
20
#include "modperl_xs_sv_convert.h"
 
21
 
 
22
#include "modperl_xs_util.h"
 
23
 
 
24
#include "modperl_xs_typedefs.h"
 
25
 
 
26
MODULE = Apache::Process    PACKAGE = Apache::Process 
 
27
 
 
28
APR::Pool
 
29
pool(obj, val=NULL)
 
30
    Apache::Process obj
 
31
    APR::Pool val
 
32
 
 
33
    PREINIT:
 
34
    /*nada*/
 
35
 
 
36
 
 
37
    CODE:
 
38
    RETVAL = (APR__Pool) obj->pool;
 
39
 
 
40
    if (items > 1) {
 
41
         obj->pool = (APR__Pool) val;
 
42
    }
 
43
 
 
44
    OUTPUT:
 
45
    RETVAL
 
46
 
 
47
MODULE = Apache::Process    PACKAGE = Apache::Process 
 
48
 
 
49
APR::Pool
 
50
pconf(obj, val=NULL)
 
51
    Apache::Process obj
 
52
    APR::Pool val
 
53
 
 
54
    PREINIT:
 
55
    /*nada*/
 
56
 
 
57
 
 
58
    CODE:
 
59
    RETVAL = (APR__Pool) obj->pconf;
 
60
 
 
61
    if (items > 1) {
 
62
         obj->pconf = (APR__Pool) val;
 
63
    }
 
64
 
 
65
    OUTPUT:
 
66
    RETVAL
 
67
 
 
68
MODULE = Apache::Process    PACKAGE = Apache::Process 
 
69
 
 
70
const char *
 
71
short_name(obj, val=NULL)
 
72
    Apache::Process obj
 
73
    const char * val
 
74
 
 
75
    PREINIT:
 
76
    /*nada*/
 
77
 
 
78
 
 
79
    CODE:
 
80
    RETVAL = (const char *) obj->short_name;
 
81
 
 
82
    if (items > 1) {
 
83
         obj->short_name = (const char *) val;
 
84
    }
 
85
 
 
86
    OUTPUT:
 
87
    RETVAL
 
88
 
 
89
MODULE = Apache::Process
 
90
PROTOTYPES: disabled
 
91
 
 
92
BOOT:
 
93
    items = items; /* -Wall */
 
94