Load dfhack.init in a dedicated thread (non-interactive console mode)
| 952 | |
| 953 | // Load dfhack.init in a dedicated thread (non-interactive console mode) |
| 954 | static void fInitthread(IODATA * iod) |
| 955 | { |
| 956 | Core * core = iod->core; |
| 957 | color_ostream_proxy out(core->getConsole()); |
| 958 | |
| 959 | run_dfhack_init(out, core); |
| 960 | } |
| 961 | |
| 962 | // A thread function... for the interactive console. |
| 963 | static void fIOthread(IODATA * iod) |
nothing calls this directly
no test coverage detected