+2008-04-17 Bruno Haible <bruno@clisp.org>
+
+ * lock.h (gl_lock_destroy, gl_rwlock_destroy,
+ gl_recursive_lock_destroy): Provide no-op definitions for the dummy
+ implementation.
+ Patch by Bruce Merry <bmerry@gmail.com>.
+
2008-04-16 Bruno Haible <bruno@clisp.org>
* localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR): New
/* Locking in multithreaded situations.
- Copyright (C) 2005-2007 Free Software Foundation, Inc.
+ Copyright (C) 2005-2008 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published
# define gl_lock_init(NAME)
# define gl_lock_lock(NAME)
# define gl_lock_unlock(NAME)
+# define gl_lock_destroy(NAME)
/* ------------------------- gl_rwlock_t datatype ------------------------- */
# define gl_rwlock_rdlock(NAME)
# define gl_rwlock_wrlock(NAME)
# define gl_rwlock_unlock(NAME)
+# define gl_rwlock_destroy(NAME)
/* --------------------- gl_recursive_lock_t datatype --------------------- */
# define gl_recursive_lock_init(NAME)
# define gl_recursive_lock_lock(NAME)
# define gl_recursive_lock_unlock(NAME)
+# define gl_recursive_lock_destroy(NAME)
/* -------------------------- gl_once_t datatype -------------------------- */