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

Annotation of /libmcrypt/lib/mcrypt_threads.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (hide annotations)
Wed Jan 8 17:24:07 2003 UTC (21 years, 2 months ago) by nmav
Branch: MAIN
CVS Tags: libmcrypt_2_5_7, libmcrypt_2_5_6, HEAD
Changes since 1.6: +1 -1 lines
File MIME type: text/plain
*** empty log message ***

1 nmav 1.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 nmav 1.7 #ifdef DLMUTEX
26 nmav 1.6
27 nmav 1.2 static void _mcrypt_mutex_seterror (const char *ERROR) {
28     return; /* do nothing */
29     }
30     static const char * _mcrypt_mutex_geterror (void) {
31     /* return no error */
32     return NULL;
33     }
34 nmav 1.1
35 nmav 1.5 WIN32DLL_DEFINE
36 nmav 1.1 int mcrypt_mutex_register ( void (*mutex_lock)(void) ,
37 nmav 1.2 void (*mutex_unlock)(void))
38 nmav 1.1 {
39    
40     return lt_dlmutex_register ( mutex_lock, mutex_unlock,
41 nmav 1.2 _mcrypt_mutex_seterror, _mcrypt_mutex_geterror);
42    
43 nmav 1.1 }
44 nmav 1.6 #else
45 nmav 1.5 WIN32DLL_DEFINE
46 nmav 1.4 int mcrypt_mutex_register ( void (*mutex_lock)(void) ,
47     void (*mutex_unlock)(void))
48     {
49     return 0;
50     }
51 nmav 1.6 #endif /* NO_DLMUTEX */

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26