Changeset 1649


Ignore:
Timestamp:
Jan 2, 2008 7:56:38 AM (16 years ago)
Author:
bennylp
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/config.h

    r1595 r1649  
    427427#endif 
    428428 
     429 
     430/** 
     431 * Specify if PJ_CHECK_STACK() macro is enabled to check the sanity of  
     432 * the stack. The OS implementation may check that no stack overflow  
     433 * occurs, and it also may collect statistic about stack usage. Note 
     434 * that this will increase the footprint of the libraries since it 
     435 * tracks the filename and line number of each functions. 
     436 */ 
     437#ifndef PJ_OS_HAS_CHECK_STACK 
     438#       define PJ_OS_HAS_CHECK_STACK            0 
     439#endif 
    429440 
    430441/** 
Note: See TracChangeset for help on using the changeset viewer.