Compare commits

...

10 Commits

Author SHA1 Message Date
Russell Bryant
447b146315 Importing files for 1.4.21.1 release
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21.1@126590 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-30 16:21:26 +00:00
Russell Bryant
3ee1c7ff49 remove version files so the mkrelease script can create them
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21.1@126579 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-30 16:17:41 +00:00
Russell Bryant
e31f7fb4ee Fix a typo in the non-DEBUG_THREADS version of the recently added DEADLOCK_AVOIDANCE()
macro.  This caused the lock to not actually be released, and as a result, not
avoid deadlocks at all.  This resolves the issues reported in the last while about
Asterisk locking up all over the place (and most commonly, in chan_iax2).

(closes issue #12927)
(closes issue #12940)
(closes issue #12925)
(potentially closes others ...)


git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21.1@126578 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-30 16:16:49 +00:00
Russell Bryant
40e6cefe02 update .version and Changelog
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21.1@126577 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-30 16:15:33 +00:00
Russell Bryant
a46eeaa918 create 1.4.21.1 tag
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21.1@126576 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-30 16:12:24 +00:00
Russell Bryant
42a10f2cd9 update version files
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21@122050 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-12 14:17:44 +00:00
Russell Bryant
9fcfd340fb create 1.4.21 tag
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21@122049 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-12 14:15:24 +00:00
Russell Bryant
9088cef368 Use autotagged externals
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21-rc2@120862 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-06 13:38:21 +00:00
Russell Bryant
65f1d0ba76 Importing files for 1.4.21-rc2 release
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21-rc2@120861 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-06 13:37:56 +00:00
Russell Bryant
349252b7a5 Creating tag for the release of asterisk-1.4.21-rc2
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/1.4.21-rc2@120860 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-06-06 13:36:53 +00:00
4 changed files with 18108 additions and 2 deletions

1
.lastclean Normal file
View File

@@ -0,0 +1 @@
32

1
.version Normal file
View File

@@ -0,0 +1 @@
1.4.21.1

18104
ChangeLog Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -712,9 +712,9 @@ static inline int __ast_cond_timedwait(const char *filename, int lineno, const c
#else /* !DEBUG_THREADS */
#define DEADLOCK_AVOIDANCE(lock) \
ast_mutex_lock(lock); \
ast_mutex_unlock(lock); \
usleep(1); \
ast_mutex_unlock(lock);
ast_mutex_lock(lock);
typedef pthread_mutex_t ast_mutex_t;