X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_gcrypt.h;h=89bdab87e1818b5ba6cd69a5e7c5948c9ac58517;hb=757ce25689dc8241817763dd357a6f4105418326;hp=4d94344ef1e9951de5ff3977f6e8b6b8f9dbc890;hpb=14f37b2101842fa6e427f962f689db74eff6faba;p=vlc diff --git a/include/vlc_gcrypt.h b/include/vlc_gcrypt.h index 4d94344ef1..89bdab87e1 100644 --- a/include/vlc_gcrypt.h +++ b/include/vlc_gcrypt.h @@ -1,21 +1,21 @@ /***************************************************************************** * vlc_gcrypt.h: VLC thread support for gcrypt ***************************************************************************** - * Copyright (C) 2004-2008 Rémi Denis-Courmont + * Copyright (C) 2004-2010 Rémi Denis-Courmont * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /** @@ -23,6 +23,8 @@ * This file implements gcrypt support functions in vlc */ +#include + #ifdef LIBVLC_USE_PTHREAD /** * If possible, use gcrypt-provided thread implementation. This is so that @@ -74,7 +76,8 @@ static const struct gcry_thread_cbs gcry_threads_vlc = gcry_vlc_mutex_init, gcry_vlc_mutex_destroy, gcry_vlc_mutex_lock, - gcry_vlc_mutex_unlock + gcry_vlc_mutex_unlock, + NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }; #endif @@ -88,14 +91,13 @@ static inline void vlc_gcrypt_init (void) * plugins linking with gcrypt, and some underlying libraries may use it * behind our back. Only way is to always link gcrypt statically (ouch!) or * have upstream gcrypt provide one shared object per threading system. */ - static vlc_mutex_t lock = VLC_STATIC_MUTEX; static bool done = false; - vlc_mutex_lock (&lock); + vlc_global_lock (VLC_GCRYPT_MUTEX); if (!done) { gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_vlc); done = true; } - vlc_mutex_unlock (&lock); + vlc_global_unlock (VLC_GCRYPT_MUTEX); }