dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 120908 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r120908 | jpeeler | 2008-06-06 13:05:15 -0500 (Fri, 06 Jun 2008) | 1 line

only define thread storage variable if necessary for LOW_MEMORY
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@120909 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2008-06-06 18:06:06 +00:00
parent 60bf6d123a
commit 520498134e
1 changed files with 2 additions and 0 deletions

View File

@ -1723,11 +1723,13 @@ static void temp_pvt_cleanup(void *);
/*! \brief A per-thread temporary pvt structure */
AST_THREADSTORAGE_CUSTOM(ts_temp_pvt, temp_pvt_init, temp_pvt_cleanup);
#ifdef LOW_MEMORY
static void ts_ast_rtp_destroy(void *);
AST_THREADSTORAGE_CUSTOM(ts_audio_rtp, NULL, ts_ast_rtp_destroy);
AST_THREADSTORAGE_CUSTOM(ts_video_rtp, NULL, ts_ast_rtp_destroy);
AST_THREADSTORAGE_CUSTOM(ts_text_rtp, NULL, ts_ast_rtp_destroy);
#endif
/*! \brief Authentication list for realm authentication
* \todo Move the sip_auth list to AST_LIST */