Changes between Version 31 and Version 32 of FAQ


Ignore:
Timestamp:
Feb 12, 2008 12:30:38 PM (16 years ago)
Author:
bennylp
Comment:

Added lock ordering

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v31 v32  
    629629If you have {{{pjsip_rx_data}}} object rather than {{{pjsip_event}}} object, then extracting the SIP message is easier. You can find the SIP messaging elements (the SIP message and shortcuts to important headers) in {{{msg_info}}} field of the {{{pjsip_rx_data}}} object. 
    630630 
     631=== I'm having deadlock in my application. What went wrong? === #sip-deadlock 
     632 
     633You need to acquire mutexes in uniform order. Please see [wiki:PJSUA_Locks Mutex Lock Ordering in PJSUA-LIB] for more information. 
    631634 
    632635----