MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / dbconsumer_emit

Function dbconsumer_emit

lua/sp.c:943–952  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

941
942static int db_emit_int(Lua);
943static int dbconsumer_emit(Lua L)
944{
945 dbconsumer_t *q = luaL_checkudata(L, 1, dbtypes.dbconsumer);
946 lua_remove(L, 1);
947
948 ping(L);
949 int rc = db_emit_int(L);
950 pong(L, q);
951 return rc;
952}
953
954static int dbconsumer_emit_timeout(Lua L)
955{

Callers

nothing calls this directly

Calls 5

luaL_checkudataFunction · 0.85
lua_removeFunction · 0.85
pingFunction · 0.85
db_emit_intFunction · 0.85
pongFunction · 0.85

Tested by

no test coverage detected