]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/close.c
Notices
[openldap] / servers / slapd / back-perl / close.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2003 The OpenLDAP Foundation.
5  * Portions Copyright 1999 John C. Quillan.
6  * Portions Copyright 2002 myinternet Limited.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 #include <EXTERN.h>
19 #include <perl.h>
20 #undef _ /* #defined by both Perl and ac/localize.h */
21
22 #ifdef HAVE_WIN32_ASPERL
23 #include "asperl_undefs.h"
24 #endif
25
26 #include "portable.h"
27         
28 #include <stdio.h>
29
30 #include "slap.h"
31
32 #include "perl_back.h"
33
34 /**********************************************************
35  *
36  * Close
37  *
38  **********************************************************/
39
40 int
41 perl_back_close(
42         BackendInfo *bd
43 )
44 {
45         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
46
47         perl_destruct(PERL_INTERPRETER);
48
49         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
50
51         return 0;
52 }
53
54 int
55 perl_back_destroy(
56         BackendInfo *bd
57 )
58 {
59         perl_free(PERL_INTERPRETER);
60         PERL_INTERPRETER = NULL;
61
62         ldap_pvt_thread_mutex_destroy( &perl_interpreter_mutex );       
63
64         return 0;
65 }
66
67 int
68 perl_back_db_destroy(
69         BackendDB *be
70 )
71 {
72         free( be->be_private );
73         be->be_private = NULL;
74
75         return 0;
76 }