| 1945 | } |
| 1946 | |
| 1947 | void fxExitToHost(txMachine* the) |
| 1948 | { |
| 1949 | txJump* jump = the->firstJump; |
| 1950 | while (jump->nextJump) { |
| 1951 | txJump* nextJump = jump->nextJump; |
| 1952 | if (jump->flag) |
| 1953 | c_free(jump); |
| 1954 | jump = nextJump; |
| 1955 | } |
| 1956 | c_longjmp(jump->buffer, 1); |
| 1957 | } |
| 1958 | |
| 1959 | typedef struct { |
| 1960 | txMachine* machine; |