summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/os.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-07-31 15:10:36 +0000
committerBenny Prijono <bennylp@teluu.com>2006-07-31 15:10:36 +0000
commit38d6c045a1d0ebb665a4c7213897330a6b8af7de (patch)
tree24f7aab10de2b687bad63c46cc9466ffd704572a /pjlib/include/pj/os.h
parent8437d671f9c4c0fdd2d5d29f8741173391196e1c (diff)
Fixed bug in registring external thread: thread descriptor is not large enough because of recent enlargement on PJ_MAX_OBJ_NAME.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@636 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/os.h')
-rw-r--r--pjlib/include/pj/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/include/pj/os.h b/pjlib/include/pj/os.h
index e87d5ad6..ad2b49b1 100644
--- a/pjlib/include/pj/os.h
+++ b/pjlib/include/pj/os.h
@@ -67,7 +67,7 @@ typedef int (PJ_THREAD_FUNC pj_thread_proc)(void*);
* Size of thread struct.
*/
#if !defined(PJ_THREAD_DESC_SIZE)
-# define PJ_THREAD_DESC_SIZE (16)
+# define PJ_THREAD_DESC_SIZE (64)
#endif
/**