Recorded merge of revisions 154263 via svnmerge from

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

........
  r154263 | tilghman | 2008-11-04 12:58:05 -0600 (Tue, 04 Nov 2008) | 3 lines
  
  Make the monitor thread non-detached, so it can be joined (suggested by Russell
  on -dev list).
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154264 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2008-11-04 18:59:48 +00:00
parent 2cc8e25222
commit 721b90aa4b
2 changed files with 3 additions and 4 deletions

View File

@@ -5917,7 +5917,7 @@ static void *accept_thread(void *ignore)
AST_LIST_INSERT_HEAD(&sessions, s, list);
AST_LIST_UNLOCK(&sessions);
if (ast_pthread_create_detached(&s->t, NULL, skinny_session, s)) {
if (ast_pthread_create(&s->t, NULL, skinny_session, s)) {
destroy_session(s);
}
}