Ignore:
Timestamp:
Aug 10, 2006 9:44:26 PM (18 years ago)
Author:
bennylp
Message:

Attempt to fix the race condition in dialog locking.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_ua_layer.h

    r515 r671  
    8080PJ_DECL(pjsip_user_agent*) pjsip_ua_instance(void); 
    8181 
     82 
     83/** 
     84 * Lock the dialog's hash table. This function is normally called by 
     85 * dialog code only. 
     86 * 
     87 * @return              PJ_SUCCESS on success or the appropriate error code. 
     88 */ 
     89PJ_DECL(pj_status_t) pjsip_ua_lock_dlg_table(void); 
     90 
     91 
     92/** 
     93 * Unlock the dialog's hash table. This function is normally called by 
     94 * dialog code only. 
     95 * 
     96 * @return              PJ_SUCCESS on success or the appropriate error code. 
     97 */ 
     98PJ_DECL(pj_status_t) pjsip_ua_unlock_dlg_table(void); 
     99 
     100 
    82101/** 
    83102 * Destroy the user agent layer. 
Note: See TracChangeset for help on using the changeset viewer.