Changeset 5351 for pjproject/trunk/pjsip/src/pjsip-simple/evsub.c
- Timestamp:
- Jun 21, 2016 8:56:42 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-simple/evsub.c
r5245 r5351 832 832 } 833 833 834 834 /* 835 * Increment the event subscription's group lock. 836 */ 837 PJ_DEF(pj_status_t) pjsip_evsub_add_ref(pjsip_evsub *sub) 838 { 839 return pj_grp_lock_add_ref(sub->grp_lock); 840 } 841 842 /* 843 * Decrement the event subscription's group lock. 844 */ 845 PJ_DEF(pj_status_t) pjsip_evsub_dec_ref(pjsip_evsub *sub) 846 { 847 return pj_grp_lock_dec_ref(sub->grp_lock); 848 } 835 849 836 850 /*
Note: See TracChangeset
for help on using the changeset viewer.