| 888 | |
| 889 | |
| 890 | void *ControlServiceLoopAdapter(ThreadStruct *ts) |
| 891 | { |
| 892 | Transceiver *transceiver = ts->trx; |
| 893 | unsigned CN = ts->CN; |
| 894 | while (1) { |
| 895 | transceiver->driveControl(CN); |
| 896 | pthread_testcancel(); |
| 897 | } |
| 898 | return NULL; |
| 899 | } |
| 900 | |
| 901 | void *DemodServiceLoopAdapter(Demodulator *demodulator) |
| 902 | { |
nothing calls this directly
no test coverage detected