| 133 | |
| 134 | #ifdef mxDebug |
| 135 | void fxReadableCallback(CFSocketRef socketRef, CFSocketCallBackType cbType, CFDataRef addr, const void* data, void* context) |
| 136 | { |
| 137 | txMachine* the = context; |
| 138 | if (fxIsReadable(the)) { |
| 139 | fxDebugCommand(the); |
| 140 | if (the->breakOnStartFlag) { |
| 141 | fxBeginHost(the); |
| 142 | fxDebugLoop(the, NULL, 0, "C: xsDebugger"); |
| 143 | fxEndHost(the); |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | void fxConnect(txMachine* the) |
| 149 | { |
nothing calls this directly
no test coverage detected