| 756 | pthread_mutex_unlock(&s->registrationsLock); |
| 757 | |
| 758 | static void PythonSessionCtx_AddFep(PythonSessionCtx* session, char *id){ |
| 759 | pthread_mutex_lock(&session->registrationsLock); |
| 760 | session->registrations = array_append(session->registrations, id); |
| 761 | pthread_mutex_unlock(&session->registrationsLock); |
| 762 | } |
| 763 | |
| 764 | static void PythonSessionCtx_DelFep(PythonSessionCtx* session, const char *id){ |
| 765 | pthread_mutex_lock(&session->registrationsLock); |
no outgoing calls
no test coverage detected