Added PJ_OS_HAS_CHECK_STACK default configuration in pjlib/config.h, at least to document it in doxygen

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1649 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2008-01-02 07:56:38 +00:00
parent 70c5ba04a1
commit 467edf0aea
1 changed files with 11 additions and 0 deletions

View File

@ -427,6 +427,17 @@
#endif
/**
* Specify if PJ_CHECK_STACK() macro is enabled to check the sanity of
* the stack. The OS implementation may check that no stack overflow
* occurs, and it also may collect statistic about stack usage. Note
* that this will increase the footprint of the libraries since it
* tracks the filename and line number of each functions.
*/
#ifndef PJ_OS_HAS_CHECK_STACK
# define PJ_OS_HAS_CHECK_STACK 0
#endif
/**
* Do we have alternate pool implementation?
*