diff options
author | Bruno Haible <bruno@clisp.org> | 2008-04-17 22:08:26 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:15:39 +0200 |
commit | 1520961b7d0551c113ef1f98547f442ed524b20e (patch) | |
tree | 13d66aa0cf669699fdde550926b9fce22a3ae199 /gettext-runtime/intl/lock.h | |
parent | 671604e97044a88203ab668ae03990aab2f56408 (diff) | |
download | external_gettext-1520961b7d0551c113ef1f98547f442ed524b20e.zip external_gettext-1520961b7d0551c113ef1f98547f442ed524b20e.tar.gz external_gettext-1520961b7d0551c113ef1f98547f442ed524b20e.tar.bz2 |
Provide missing no-op definitions for the dummy implementation.
Diffstat (limited to 'gettext-runtime/intl/lock.h')
-rw-r--r-- | gettext-runtime/intl/lock.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gettext-runtime/intl/lock.h b/gettext-runtime/intl/lock.h index 7642f0f..23a9d15 100644 --- a/gettext-runtime/intl/lock.h +++ b/gettext-runtime/intl/lock.h @@ -1,5 +1,5 @@ /* 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 @@ -1063,6 +1063,7 @@ typedef int gl_lock_t; # define gl_lock_init(NAME) # define gl_lock_lock(NAME) # define gl_lock_unlock(NAME) +# define gl_lock_destroy(NAME) /* ------------------------- gl_rwlock_t datatype ------------------------- */ @@ -1073,6 +1074,7 @@ typedef int gl_rwlock_t; # 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 --------------------- */ @@ -1082,6 +1084,7 @@ typedef int gl_recursive_lock_t; # 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 -------------------------- */ |