| 126 | extern char *program_invocation_name; |
| 127 | |
| 128 | gboolean fxReadableCallback(GSocket *socket, GIOCondition condition, gpointer user_data) |
| 129 | { |
| 130 | txMachine* the = user_data; |
| 131 | if (fxIsReadable(the)) { |
| 132 | fxDebugCommand(the); |
| 133 | if (the->breakOnStartFlag) { |
| 134 | fxBeginHost(the); |
| 135 | fxDebugLoop(the, NULL, 0, "C: xsDebugger"); |
| 136 | fxEndHost(the); |
| 137 | } |
| 138 | } |
| 139 | return TRUE; |
| 140 | } |
| 141 | |
| 142 | void fxConnect(txMachine* the) |
| 143 | { |
nothing calls this directly
no test coverage detected