[asterisk-commits] russell: branch 1.4 r98982 - in /branches/1.4: ./ include/asterisk/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Jan 16 16:36:25 CST 2008


Author: russell
Date: Wed Jan 16 16:36:24 2008
New Revision: 98982

URL: http://svn.digium.com/view/asterisk?view=rev&rev=98982
Log:
Add an unused pointer to the ast_channel struct.  This makes the ast_channel structure
retain the same size as it had in previous 1.4 releases.  Also, all of the offsets for
members in the structure are still the same (except for the two pointers that got replaced
for the new spy/whisper architecture.)

Modified:
    branches/1.4/.cleancount
    branches/1.4/include/asterisk/channel.h

Modified: branches/1.4/.cleancount
URL: http://svn.digium.com/view/asterisk/branches/1.4/.cleancount?view=diff&rev=98982&r1=98981&r2=98982
==============================================================================
--- branches/1.4/.cleancount (original)
+++ branches/1.4/.cleancount Wed Jan 16 16:36:24 2008
@@ -1,1 +1,1 @@
-31
+32

Modified: branches/1.4/include/asterisk/channel.h
URL: http://svn.digium.com/view/asterisk/branches/1.4/include/asterisk/channel.h?view=diff&rev=98982&r1=98981&r2=98982
==============================================================================
--- branches/1.4/include/asterisk/channel.h (original)
+++ branches/1.4/include/asterisk/channel.h Wed Jan 16 16:36:24 2008
@@ -428,6 +428,9 @@
 	int rawwriteformat;				/*!< Raw write format */
 
 	struct ast_audiohook_list *audiohooks;
+	/*! This pointer should stay for Asterisk 1.4.  It just keeps the struct size the same
+	 *  for the sake of ABI compatability. */
+	void *__unused;
 
 	AST_LIST_ENTRY(ast_channel) chan_list;		/*!< For easy linking */
 	




More information about the asterisk-commits mailing list