MCPcopy Create free account
hub / github.com/RedisGears/RedisGears / PythonSessionCtx_AddFep

Function PythonSessionCtx_AddFep

plugins/python/redisgears_python.c:758–762  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

756 pthread_mutex_unlock(&s->registrationsLock);
757
758static 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
764static void PythonSessionCtx_DelFep(PythonSessionCtx* session, const char *id){
765 pthread_mutex_lock(&session->registrationsLock);

Callers 2

registerExecutionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected