/[mcrypt]/libmcrypt/lib/mcrypt_threads.c
ViewVC logotype

Contents of /libmcrypt/lib/mcrypt_threads.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.5 - (show annotations)
Thu Sep 20 08:13:56 2001 UTC (22 years, 7 months ago) by nmav
Branch: MAIN
CVS Tags: mcrypt_2_4_20, libmcrypt_2_5_3, libmcrypt_2_5_2, libmcrypt_2_5_0, libmcrypt_2_5_5, libmcrypt_2_5_4, libmcrypt_2_4_17, libmcrypt_2_5_5rc1, libmcrypt_2_4_21
Changes since 1.4: +2 -0 lines
File MIME type: text/plain
*** empty log message ***

1 /*
2 * Copyright (C) 2001 Nikos Mavroyanopoulos
3 *
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Library General Public License as published
6 * by the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef LIBDEFS_H
21 #define LIBDEFS_H
22 #include <libdefs.h>
23 #endif
24
25 #ifdef USE_LTDL
26 static void _mcrypt_mutex_seterror (const char *ERROR) {
27 return; /* do nothing */
28 }
29 static const char * _mcrypt_mutex_geterror (void) {
30 /* return no error */
31 return NULL;
32 }
33
34 # ifndef NO_DLMUTEX
35 WIN32DLL_DEFINE
36 int mcrypt_mutex_register ( void (*mutex_lock)(void) ,
37 void (*mutex_unlock)(void))
38 {
39
40 return lt_dlmutex_register ( mutex_lock, mutex_unlock,
41 _mcrypt_mutex_seterror, _mcrypt_mutex_geterror);
42
43 }
44 # else
45 WIN32DLL_DEFINE
46 int mcrypt_mutex_register ( void (*mutex_lock)(void) ,
47 void (*mutex_unlock)(void))
48 {
49 return 0;
50 }
51 # endif /* NO_DLMUTEX */
52 #endif

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26