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