+2008-04-17 Bruno Haible <bruno@clisp.org>
+
+ * lib/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-17 Simon Josefsson <simon@josefsson.org>
* doc/posix-functions/strftime.texi (strftime): Mention that %e
/* 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 General Public License as published by
# 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 -------------------------- */