Functions | |
| switch_status_t | switch_core_session_signal_lock (switch_core_session_t *session) |
| switch_status_t | switch_core_session_signal_unlock (switch_core_session_t *session) |
| switch_status_t | switch_core_session_read_lock (_In_ switch_core_session_t *session) |
| Acquire a read lock on the session. | |
| void | switch_core_session_write_lock (_In_ switch_core_session_t *session) |
| Acquire a write lock on the session. | |
| void | switch_core_session_rwunlock (_In_ switch_core_session_t *session) |
| Unlock a read or write lock on as given session. | |
|
|
Acquire a read lock on the session.
|
|
|
Unlock a read or write lock on as given session.
|
|
|
00039 {
00040 return switch_mutex_lock(session->signal_mutex);
00041 }
|
Here is the call graph for this function:

|
|
00044 {
00045 return switch_mutex_unlock(session->signal_mutex);
00046 }
|
Here is the call graph for this function:

|
|
Acquire a write lock on the session.
|
1.3.9.1