Ignore:
Timestamp:
Feb 21, 2013 11:18:36 AM (11 years ago)
Author:
bennylp
Message:

Fixed #1616: Implementation of Group lock and other foundation in PJLIB for fixing synchronization issues

File:
1 edited

Legend:

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

    r4191 r4359  
    485485#ifndef PJ_TIMER_DEBUG 
    486486#  define PJ_TIMER_DEBUG            0 
     487#endif 
     488 
     489 
     490/** 
     491 * Set this to 1 to enable debugging on the group lock. Default: 0 
     492 */ 
     493#ifndef PJ_GRP_LOCK_DEBUG 
     494#  define PJ_GRP_LOCK_DEBUG     0 
    487495#endif 
    488496 
     
    11231131 
    11241132/** 
     1133 * Simulate race condition by sleeping the thread in strategic locations. 
     1134 * Default: no! 
     1135 */ 
     1136#ifndef PJ_RACE_ME 
     1137#  define PJ_RACE_ME(x) 
     1138#endif 
     1139 
     1140/** 
    11251141 * Function attributes to inform that the function may throw exception. 
    11261142 * 
Note: See TracChangeset for help on using the changeset viewer.