[svn-commits] tilghman: trunk r64821 - in /trunk: ./
include/asterisk/linkedlists.h
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu May 17 14:20:34 MST 2007
Author: tilghman
Date: Thu May 17 16:20:33 2007
New Revision: 64821
URL: http://svn.digium.com/view/asterisk?view=rev&rev=64821
Log:
Merged revisions 64820 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
................
r64820 | tilghman | 2007-05-17 16:19:34 -0500 (Thu, 17 May 2007) | 10 lines
Merged revisions 64819 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r64819 | tilghman | 2007-05-17 16:14:36 -0500 (Thu, 17 May 2007) | 2 lines
How is it that we never caught that this is returning the opposite of our documentation, until now?
........
................
Modified:
trunk/ (props changed)
trunk/include/asterisk/linkedlists.h
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/include/asterisk/linkedlists.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/linkedlists.h?view=diff&rev=64821&r1=64820&r2=64821
==============================================================================
--- trunk/include/asterisk/linkedlists.h (original)
+++ trunk/include/asterisk/linkedlists.h Thu May 17 16:20:33 2007
@@ -33,7 +33,7 @@
This macro attempts to place an exclusive lock in the
list head structure pointed to by head.
- Returns non-zero on success, 0 on failure
+ Returns 0 on success, non-zero on failure
*/
#define AST_LIST_LOCK(head) \
ast_mutex_lock(&(head)->lock)
@@ -44,7 +44,7 @@
This macro attempts to place an exclusive write lock in the
list head structure pointed to by head.
- Returns non-zero on success, 0 on failure
+ Returns 0 on success, non-zero on failure
*/
#define AST_RWLIST_WRLOCK(head) \
ast_rwlock_wrlock(&(head)->lock)
@@ -55,7 +55,7 @@
This macro attempts to place a read lock in the
list head structure pointed to by head.
- Returns non-zero on success, 0 on failure
+ Returns 0 on success, non-zero on failure
*/
#define AST_RWLIST_RDLOCK(head) \
ast_rwlock_rdlock(&(head)->lock)
@@ -66,7 +66,7 @@
This macro attempts to place an exclusive lock in the
list head structure pointed to by head.
- Returns non-zero on success, 0 on failure
+ Returns 0 on success, non-zero on failure
*/
#define AST_LIST_TRYLOCK(head) \
ast_mutex_trylock(&(head)->lock)
@@ -77,7 +77,7 @@
This macro attempts to place an exclusive write lock in the
list head structure pointed to by head.
- Returns non-zero on success, 0 on failure
+ Returns 0 on success, non-zero on failure
*/
#define AST_RWLIST_TRYWRLOCK(head) \
ast_rwlock_trywrlock(&(head)->lock)
@@ -88,7 +88,7 @@
This macro attempts to place a read lock in the
list head structure pointed to by head.
- Returns non-zero on success, 0 on failure
+ Returns 0 on success, non-zero on failure
*/
#define AST_RWLIST_TRYRDLOCK(head) \
ast_rwlock_tryrdlock(&(head)->lock)
More information about the svn-commits
mailing list