Lines Matching defs:ldbState
60 struct ldbState { struct
61 int fd; /* Socket of the debugging client. */
62 int active; /* Are we debugging EVAL right now? */
63 int forked; /* Is this a fork()ed debugging session? */
64 list *logs; /* List of messages to send to the client. */
65 list *traces; /* Messages about Redis commands executed since last stop.*/
66 list *children; /* All forked debugging sessions pids. */
67 int bp[LDB_BREAKPOINTS_MAX]; /* An array of breakpoints line numbers. */
68 int bpcount; /* Number of valid entries inside bp. */
69 int step; /* Stop at next line ragardless of breakpoints. */
70 int luabp; /* Stop at next line because redis.breakpoint() was called. */
71 sds *src; /* Lua script source code split by line. */
72 int lines; /* Number of lines in 'src'. */
73 int currentline; /* Current line number. */
74 sds cbuf; /* Debugger client command buffer. */
75 size_t maxlen; /* Max var dump / reply length. */
76 int maxlen_hint_sent; /* Did we already hint about "set maxlen"? */