From: Russell Bryant Date: Wed, 25 Mar 2009 22:13:36 +0000 (+0000) Subject: Merged revisions 184344 via svnmerge from X-Git-Tag: 1.6.1.0-rc4~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cf111eb6b336a99c49637d03ef2ad7ef142d18d;p=thirdparty%2Fasterisk.git Merged revisions 184344 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r184344 | russell | 2009-03-25 17:11:35 -0500 (Wed, 25 Mar 2009) | 2 lines Remove unneeded AST_LIST_ENTRY() and comment on the purpose of ast_event_ref. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@184345 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/event.c b/main/event.c index e29f057e3f..11f022f903 100644 --- a/main/event.c +++ b/main/event.c @@ -86,9 +86,18 @@ struct ast_event { unsigned char payload[0]; } __attribute__((packed)); + +/*! + * \brief A holder for an event + * + * \details This struct used to have more of a purpose than it does now. + * It is used to hold events in the event cache. It can be completely removed + * if one of these two things is done: + * - ast_event gets changed such that it never has to be realloc()d + * - astobj2 is updated so that you can realloc() an astobj2 object + */ struct ast_event_ref { struct ast_event *event; - AST_LIST_ENTRY(ast_event_ref) entry; }; struct ast_event_ie_val {