| 2279 | } |
| 2280 | |
| 2281 | static int jackCallbackHandler(jack_nframes_t nframes, void *infoPointer) |
| 2282 | { |
| 2283 | CallbackInfo *info = (CallbackInfo *)infoPointer; |
| 2284 | |
| 2285 | RtApiJack *object = (RtApiJack *)info->object; |
| 2286 | if (object->callbackEvent((unsigned long)nframes) == false) return 1; |
| 2287 | |
| 2288 | return 0; |
| 2289 | } |
| 2290 | |
| 2291 | // This function will be called by a spawned thread when the Jack |
| 2292 | // server signals that it is shutting down. It is necessary to handle |
nothing calls this directly
no test coverage detected